Enable edge gesture if quickstep has never started

Bug: 154580671
Test: Restart phone w/o touching nav bar,
back works.

Change-Id: I59bd060f2d06d273bc8e1eb1186273902ebe6c8e
This commit is contained in:
Vinit Nayak
2020-04-27 18:35:14 -07:00
parent 18f35e5747
commit a2b672ccd8

View File

@@ -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