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

Commit 363703f0 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Enable edge gesture if quickstep has never started" into rvc-dev am:...

Merge "Enable edge gesture if quickstep has never started" into rvc-dev am: a1f9485d am: 03870a8d am: 2f1b0e20

Change-Id: Ic9abe55409f53ae050dc25d062f48e21b6882cbe
parents f6efaa18 2f1b0e20
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -556,7 +556,8 @@ public class EdgeBackGestureHandler extends CurrentUserTracker implements Displa

    private void updateDisabledForQuickstep() {
        int rotation = mContext.getResources().getConfiguration().windowConfiguration.getRotation();
        mDisabledForQuickstep = mStartingQuickstepRotation != rotation;
        mDisabledForQuickstep = mStartingQuickstepRotation > -1 &&
                mStartingQuickstepRotation != rotation;
    }

    @Override