diff options
author | Arne Coucheron <arco68@gmail.com> | 2020-05-27 05:02:04 +0200 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2021-09-27 21:17:05 +0800 |
commit | ef5473c1489e8c51e54b85f4d58ae5ebb50a5ad3 (patch) | |
tree | d03a762aee1c2a3a2a36e77c3d098afe530b6107 | |
parent | 118931188c9c131bea15241109c4e7025c60b41f (diff) |
[aospa][quartz] SystemUI: Fix pink progress animation color in expanded Wi-Fi tile
For some reason, this is applying the completely wrong color.
Following the code, it should show the default defined
accent_device_default_dark color with an alpha of 0.6.
Remove it to avoid the issue.
Test: Turn off Wi-Fi. Expand Wi-Fi quick tile. Observe pink
color on progress anim is gone.
Change-Id: I2510a7cd90abb71e94b7698a7d28581517eb41b4
-rw-r--r-- | packages/SystemUI/res/layout/qs_detail.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/SystemUI/res/layout/qs_detail.xml b/packages/SystemUI/res/layout/qs_detail.xml index 0ad40f46f77b..3cabfff963ab 100644 --- a/packages/SystemUI/res/layout/qs_detail.xml +++ b/packages/SystemUI/res/layout/qs_detail.xml @@ -52,7 +52,6 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:alpha="0" - android:background="@color/qs_detail_progress_track" android:src="@drawable/indeterminate_anim" android:scaleType="fitXY" /> |