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

Commit 35970ad1 authored by Adrian Roos's avatar Adrian Roos Committed by android-build-merger
Browse files

Merge "Fix status bar autohide with DirectReply" into nyc-dev am: e3e80bde

am: 9fb91a6c

* commit '9fb91a6c':
  Fix status bar autohide with DirectReply

Change-Id: I427ab905d3089d6dd1de385844c478c9dee645e4
parents 22772736 9fb91a6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3018,7 +3018,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
        if ((mSystemUiVisibility & STATUS_OR_NAV_TRANSIENT) != 0  // a transient bar is revealed
                && event.getAction() == MotionEvent.ACTION_OUTSIDE // touch outside the source bar
                && event.getX() == 0 && event.getY() == 0  // a touch outside both bars
                ) {
                && !mRemoteInputController.isRemoteInputActive()) { // not due to typing in IME
            userAutohide();
        }
    }