summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/statusbar/phone
diff options
context:
space:
mode:
authorDanesh Mondegarian <daneshm90@gmail.com>2013-01-27 23:01:17 -0500
committerDanesh Mondegarian <daneshm90@gmail.com>2013-01-28 08:00:39 -0500
commita0bfbc77f3b025ff5d27c09ef62f2e9708d8e278 (patch)
tree2dc092b526e7bde982a784fd0491e14ce97785d4 /packages/SystemUI/src/com/android/systemui/statusbar/phone
parent2ceeca1d02cc635d7781a5cb317593fafa1e0227 (diff)
downloadframeworks_base-a0bfbc77f3b025ff5d27c09ef62f2e9708d8e278.zip
frameworks_base-a0bfbc77f3b025ff5d27c09ef62f2e9708d8e278.tar.gz
frameworks_base-a0bfbc77f3b025ff5d27c09ef62f2e9708d8e278.tar.bz2
Notification : Fix app info long-press
Addresses http://code.google.com/p/cyanogenmod/issues/detail?id=7060 Change-Id: I45c0e1b73c08ceffef02db244b947bfcedf3b20a
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/statusbar/phone')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java1
1 files changed, 1 insertions, 0 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 874ca5e..76f3964 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java
@@ -69,6 +69,7 @@ public class StatusBarWindowView extends FrameLayout
public void dispatchWindowFocusChanged(boolean hasFocus) {
this.setFocusableInTouchMode(hasFocus);
this.requestFocus();
+ super.dispatchWindowFocusChanged(hasFocus);
}
@Override