diff --git a/quickstep/src/com/android/quickstep/ActivityControlHelper.java b/quickstep/src/com/android/quickstep/ActivityControlHelper.java index 4b918102c7..f39a0072c7 100644 --- a/quickstep/src/com/android/quickstep/ActivityControlHelper.java +++ b/quickstep/src/com/android/quickstep/ActivityControlHelper.java @@ -161,9 +161,11 @@ public interface ActivityControlHelper { .getQuickScrubController(); controller.onQuickScrubStart(activityVisible && !fromState.overviewUi, this); - // For the duration of the gesture, lock the screen orientation to ensure that we do not - // rotate mid-quickscrub - activity.getRotationHelper().setStateHandlerRequest(REQUEST_LOCK); + if (!activityVisible) { + // For the duration of the gesture, lock the screen orientation to ensure that we + // do not rotate mid-quickscrub + activity.getRotationHelper().setStateHandlerRequest(REQUEST_LOCK); + } } @Override