diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationGutsManager.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationGutsManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationGutsManager.java index 0c4b0927a906..7dbca4276fcc 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationGutsManager.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationGutsManager.java @@ -552,6 +552,9 @@ public class NotificationGutsManager implements NotifGutsViewManager { Runnable r = () -> mMainHandler.post( () -> openGutsInternal(view, x, y, menuItem)); + // If the bouncer shows, it will block the TOUCH_UP event from reaching the notif, + // so explicitly mark it as unpressed here to reset the touch animation. + view.setPressed(false); mActivityStarter.executeRunnableDismissingKeyguard( r, null /* cancelAction */, |