summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2010-10-27 14:32:28 -0700
committerJoe Onorato <joeo@google.com>2010-10-27 14:32:28 -0700
commit31b2610dee691f308584dc54b2d936f29f9ca1f7 (patch)
tree8072b7288e879797f22e944d742d0baf4ea218a9 /packages
parentc597ba8e9ad08ac628271b4498c27eda74c6c86c (diff)
downloadframeworks_base-31b2610dee691f308584dc54b2d936f29f9ca1f7.zip
frameworks_base-31b2610dee691f308584dc54b2d936f29f9ca1f7.tar.gz
frameworks_base-31b2610dee691f308584dc54b2d936f29f9ca1f7.tar.bz2
Tapping outside the system panel shouldn't open the recent panel
Change-Id: Iec784cbe08f61f14a345f81e1cf374ee095beaf5
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBarService.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBarService.java b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBarService.java
index fff70bc..a01220f 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBarService.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBarService.java
@@ -308,6 +308,7 @@ public class TabletStatusBarService extends StatusBarService {
case MSG_CLOSE_SYSTEM_PANEL:
if (DEBUG) Slog.d(TAG, "closing system panel");
mSystemPanel.setVisibility(View.GONE);
+ break;
case MSG_OPEN_RECENTS_PANEL:
if (DEBUG) Slog.d(TAG, "opening recents panel");
if (mRecentsPanel != null) mRecentsPanel.setVisibility(View.VISIBLE);