diff options
| author | 2023-07-31 12:24:24 +0000 | |
|---|---|---|
| committer | 2023-07-31 12:24:24 +0000 | |
| commit | b9520816c6bab8185d730cbb38c7a1aaa882e71c (patch) | |
| tree | 605235b01b6aa8cd47f90b2b9a8acc6fdff9a86c | |
| parent | 77bfa874878227b4aea39aa98d882c182c025e93 (diff) | |
| parent | b95f742c965a564a02d9d4ff4164d3bd30a47e55 (diff) | |
Merge "Fix Statusbar Chips clipped by 3 Button Nav in landscape mode" into udc-qpr-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/window/StatusBarWindowView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/window/StatusBarWindowView.java b/packages/SystemUI/src/com/android/systemui/statusbar/window/StatusBarWindowView.java index 06cc96e2e0cd..d696979f1859 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/window/StatusBarWindowView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/window/StatusBarWindowView.java @@ -46,6 +46,7 @@ public class StatusBarWindowView extends FrameLayout { public StatusBarWindowView(Context context, AttributeSet attrs) { super(context, attrs); + setClipChildren(false); } @Override |