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

Commit d157ca04 authored by John Spurlock's avatar John Spurlock
Browse files

Don't clear the interacting bit if panel handled touch.

Bug:11489729
Change-Id: Ie225cf9ff27f1490643ba4b1c02aa09896bd6724
parent 3e7495b2
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -113,7 +113,7 @@ public class StatusBarWindowView extends FrameLayout
            handled = super.onTouchEvent(ev);
            handled = super.onTouchEvent(ev);
        }
        }
        final int action = ev.getAction();
        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);
            mService.setInteracting(StatusBarManager.WINDOW_STATUS_BAR, false);
        }
        }
        return handled;
        return handled;