Skip to content

Commit 6295ef3

Browse files
cwrenAndroid (Google) Code Review
authored andcommitted
Merge "hide the redundant clock when the notification shade is open." into jb-mr1-dev
2 parents ebf7e28 + 85db803 commit 6295ef3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,9 @@ public boolean onTouch(View v, MotionEvent event) {
339339
mNotificationPanelIsFullScreenWidth =
340340
(mNotificationPanel.getLayoutParams().width == ViewGroup.LayoutParams.MATCH_PARENT);
341341
mNotificationPanel.setSystemUiVisibility(
342-
View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER | View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS);
342+
View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER |
343+
View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS |
344+
View.STATUS_BAR_DISABLE_CLOCK);
343345

344346
if (!ActivityManager.isHighEndGfx()) {
345347
mStatusBarWindow.setBackground(null);

0 commit comments

Comments
 (0)