summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2012-10-04 06:37:10 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-10-04 06:37:11 -0700
commit6295ef325102bed3d12e54020acb8728bc2976a0 (patch)
treeabb29682536c97896c43d376b573f454eb3c754f /packages
parentebf7e2851cab55348153fca299c52042b125924d (diff)
parent85db803e7c6baf3b596bf366f71d3bcd08879fc4 (diff)
downloadframeworks_base-6295ef325102bed3d12e54020acb8728bc2976a0.zip
frameworks_base-6295ef325102bed3d12e54020acb8728bc2976a0.tar.gz
frameworks_base-6295ef325102bed3d12e54020acb8728bc2976a0.tar.bz2
Merge "hide the redundant clock when the notification shade is open." into jb-mr1-dev
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
index a12af8d..160f3b4 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
@@ -339,7 +339,9 @@ public class PhoneStatusBar extends BaseStatusBar {
mNotificationPanelIsFullScreenWidth =
(mNotificationPanel.getLayoutParams().width == ViewGroup.LayoutParams.MATCH_PARENT);
mNotificationPanel.setSystemUiVisibility(
- View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER | View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS);
+ View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER |
+ View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS |
+ View.STATUS_BAR_DISABLE_CLOCK);
if (!ActivityManager.isHighEndGfx()) {
mStatusBarWindow.setBackground(null);