diff options
| author | 2013-11-04 18:25:09 +0000 | |
|---|---|---|
| committer | 2013-11-04 18:25:09 +0000 | |
| commit | 8f42b4e8e475f498b3cbbe8d456902876850b1f5 (patch) | |
| tree | fda596d1d3eadb75371c2f3b716e8a6db8484bbc | |
| parent | 60999fcb2ed251ec4e24eccf94b66e35b851b415 (diff) | |
| parent | d157ca049abd8e6761aab7b50431343869ec831a (diff) | |
Merge "Don't clear the interacting bit if panel handled touch." into klp-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java index e77b42060f87..4901823be46e 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java @@ -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; |