diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java index 66b2ca633ca1a..f8844c7152301 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ExpandableNotificationRow.java @@ -1838,6 +1838,10 @@ public class ExpandableNotificationRow extends ActivatableNotificationView } public void resetTranslation() { + if (mMenuRow != null && mMenuRow.isMenuVisible()) { + return; + } + if (mTranslateAnim != null) { mTranslateAnim.cancel(); }