Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ce777aa authored by Mady Mellor's avatar Mady Mellor Committed by android-build-merger
Browse files

Merge "Fix touching gear on lock screen" into nyc-dev

am: 49982058

* commit '49982058':
  Fix touching gear on lock screen
parents 51cc13fe 49982058
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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);
    }
    }