diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java index d9f88c494649..5bbc3bd92543 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarKeyguardViewManager.java @@ -655,13 +655,8 @@ public class StatusBarKeyguardViewManager implements RemoteInputController.Callb * device state and touch handling. The bouncer MUST have been notified that it is about to * show if any subsequent events are to be handled. */ - if (beginShowingBouncer(event)) { - if (SceneContainerFlag.isEnabled()) { - mSceneInteractorLazy.get().changeScene( - Scenes.Bouncer, "StatusBarKeyguardViewManager.onPanelExpansionChanged"); - } else { - mPrimaryBouncerInteractor.show(/* isScrimmed= */false); - } + if (!SceneContainerFlag.isEnabled() && beginShowingBouncer(event)) { + mPrimaryBouncerInteractor.show(/* isScrimmed= */false); } if (!primaryBouncerIsOrWillBeShowing()) { |