diff options
| author | 2023-10-20 15:31:56 +0000 | |
|---|---|---|
| committer | 2023-10-20 15:31:56 +0000 | |
| commit | d5c5b8f6d83724ba943685c7b009ef9646efcb0f (patch) | |
| tree | 205629551b85d80a1856cfd12920050777cc2b76 | |
| parent | 108e3329a3084e1586120f81aec9af5f881ce0b5 (diff) | |
| parent | 395e9641b09e81d9cfe7d77e64f1f5ee0e25e86a (diff) | |
Merge "[Status bar] Fix ongoing call chip clipping while appearing" into main
| -rw-r--r-- | packages/SystemUI/res/layout/status_bar.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/res/layout/status_bar.xml b/packages/SystemUI/res/layout/status_bar.xml index 5a70b79cb176..452bc317e2d5 100644 --- a/packages/SystemUI/res/layout/status_bar.xml +++ b/packages/SystemUI/res/layout/status_bar.xml @@ -66,7 +66,7 @@ <FrameLayout android:id="@+id/status_bar_start_side_content" android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:layout_gravity="center_vertical|start" android:clipChildren="false"> @@ -77,7 +77,7 @@ and DISABLE_NOTIFICATION_ICONS, respectively --> <LinearLayout android:id="@+id/status_bar_start_side_except_heads_up" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:layout_width="match_parent" android:layout_gravity="center_vertical|start" android:clipChildren="false"> |