Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3965b7e2 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Hide camera id for logical lens

parent 258fdca3
Loading
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2584,7 +2584,10 @@ public class MainActivity extends AppCompatActivity implements PreferenceFragmen
                String.valueOf(cameraId)
        );

        String text = getString(R.string.switch_multi_camera_lens) + " " + displayId;
        String text = getString(R.string.switch_multi_camera_lens);
        if (cameraIdSPhysical == null) {
            text += " " + displayId;
        }
        switchMultiCameraButton.setText(text);
    }