diff options
| author | 2011-08-16 15:55:44 -0400 | |
|---|---|---|
| committer | 2011-08-16 15:55:44 -0400 | |
| commit | a388449e632fadb75a0eae67f77ff618b3a39a01 (patch) | |
| tree | b4215028f2fea98530618b4b83831795cd727907 | |
| parent | 2fd1f816cd6911145af5f60476108cd088168ba6 (diff) | |
Make the navigation bar opaque.
The HW composer was getting confused by the transparent
window (which was a holdover from a previous design for
lights-out/fullscreen mode).
Bug: 5155982
Change-Id: I548e1b2b3b012aecba96ccf022730a9bd289e003
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 2 |
1 files changed, 1 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 71cbc612ac5a..2e14bef6850a 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -468,7 +468,7 @@ public class PhoneStatusBar extends StatusBar { | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_SPLIT_TOUCH | WindowManager.LayoutParams.FLAG_SLIPPERY, - PixelFormat.TRANSLUCENT); + PixelFormat.OPAQUE); lp.setTitle("NavigationBar"); switch (rotation) { |