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

Commit 7755e39f authored by John Spurlock's avatar John Spurlock Committed by Android Git Automerger
Browse files

am 8f42b4e8: Merge "Don\'t clear the interacting bit if panel handled touch." into klp-dev

* commit '8f42b4e8':
  Don't clear the interacting bit if panel handled touch.
parents c8b01295 8f42b4e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ public class StatusBarWindowView extends FrameLayout
            handled = super.onTouchEvent(ev);
        }
        final int action = ev.getAction();
        if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL) {
        if (!handled && (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL)) {
            mService.setInteracting(StatusBarManager.WINDOW_STATUS_BAR, false);
        }
        return handled;