From b95f742c965a564a02d9d4ff4164d3bd30a47e55 Mon Sep 17 00:00:00 2001 From: Johannes Gallmann Date: Tue, 11 Jul 2023 16:49:14 +0200 Subject: Fix Statusbar Chips clipped by 3 Button Nav in landscape mode Bug: 289875579 Test: Manual, i.e. enabling 3 button nav and verifying chip animations in landscape and seascape mode. Change-Id: I3e3ade1f20597ca176ed553839076ad101ad3d9f --- .../src/com/android/systemui/statusbar/window/StatusBarWindowView.java | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.3-59-g8ed1b