Loading packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1349,7 +1349,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView { float y = event.getY(); float y = event.getY(); NotificationHeaderView header = getVisibleNotificationHeader(); NotificationHeaderView header = getVisibleNotificationHeader(); if (header != null) { if (header != null) { return header.isInTouchRect(x, y); return header.isInTouchRect(x - getTranslation(), y); } } return super.disallowSingleClick(event); return super.disallowSingleClick(event); } } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1349,7 +1349,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView { float y = event.getY(); float y = event.getY(); NotificationHeaderView header = getVisibleNotificationHeader(); NotificationHeaderView header = getVisibleNotificationHeader(); if (header != null) { if (header != null) { return header.isInTouchRect(x, y); return header.isInTouchRect(x - getTranslation(), y); } } return super.disallowSingleClick(event); return super.disallowSingleClick(event); } } Loading