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

Commit 9ec5de9d authored by Bobby Georgescu's avatar Bobby Georgescu
Browse files

Fix scenario where launching Gallery launches Camera

Bug: 7479102
Change-Id: Ib4676a7149c659897eee1dbbb92ab09861bd0ed4
parent b41864f1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -688,7 +688,8 @@ public class PhotoPage extends ActivityState implements
    }

    private void launchCamera() {
        Intent intent = new Intent(mActivity, CameraActivity.class);
        Intent intent = new Intent(mActivity, CameraActivity.class)
            .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        mRecenterCameraOnResume = false;
        mActivity.startActivity(intent);
    }