diff options
| author | 2020-06-19 15:56:13 -0400 | |
|---|---|---|
| committer | 2020-06-19 15:58:04 -0400 | |
| commit | fdff6c9310160fc66e8ad033fa815285aea5e026 (patch) | |
| tree | 6a855e3be7084b1a2730b6ef8d9d9522ea299b98 | |
| parent | 5731877f1e5d488eaeda1684c7a80e6999099b8b (diff) | |
Fix inconsistent widths in manage menu.
Honestly should have been a P0: https://screenshot.googleplex.com/yDLrbwa84yN
Bug: 159473130
Test: open the manage menu
Change-Id: Ieb15725ae8eadff75fccee43ec83c30cdeedbbb3
| -rw-r--r-- | packages/SystemUI/res/layout/bubble_manage_menu.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/SystemUI/res/layout/bubble_manage_menu.xml b/packages/SystemUI/res/layout/bubble_manage_menu.xml index 129282dae77f..84948828bdbe 100644 --- a/packages/SystemUI/res/layout/bubble_manage_menu.xml +++ b/packages/SystemUI/res/layout/bubble_manage_menu.xml @@ -32,8 +32,8 @@ android:orientation="horizontal"> <ImageView - android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_width="24dp" + android:layout_height="24dp" android:src="@drawable/ic_remove_no_shadow" android:tint="@color/global_actions_text"/> @@ -57,8 +57,8 @@ android:orientation="horizontal"> <ImageView - android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_width="24dp" + android:layout_height="24dp" android:src="@drawable/ic_stop_bubble" android:tint="@color/global_actions_text"/> |