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

Commit b23a56f9 authored by Michael Kolb's avatar Michael Kolb Committed by Android Git Automerger
Browse files

am 527b201b: am 7a537732: Merge "Prevent Camera UI in Gallery" into gb-ub-photos-arches

* commit '527b201b':
  Prevent Camera UI in Gallery
parents 87884b28 527b201b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -205,6 +205,7 @@ public class PhotoView extends GLView {
    private boolean mFullScreenCamera;
    private Rect mCameraRelativeFrame = new Rect();
    private Rect mCameraRect = new Rect();
    private boolean mFirst = true;

    // [mPrevBound, mNextBound] is the range of index for all pictures in the
    // model, if we assume the index of current focused picture is 0.  So if
@@ -1406,8 +1407,9 @@ public class PhotoView extends GLView {
        boolean full = !mFilmMode && mPictures.get(0).isCamera()
                && mPositionController.isCenter()
                && mPositionController.isAtMinimalScale();
        if (full != mFullScreenCamera) {
        if (mFirst || full != mFullScreenCamera) {
            mFullScreenCamera = full;
            mFirst = false;
            mListener.onFullScreenChanged(full);
            if (full) mHandler.sendEmptyMessage(MSG_UNDO_BAR_FULL_CAMERA);
        }