commit | b8d907053958fd0f156f24653077cb84387144e8 | [log] [tgz] |
---|---|---|
author | Michael W <baddaemon87@gmail.com> | Tue Jan 02 15:40:49 2024 +0100 |
committer | Michael W <baddaemon87@gmail.com> | Sun Feb 11 14:35:04 2024 +0000 |
tree | 4a49fdcddece782fc426cf54b38c0199539ccd21 | |
parent | 4b02008a66efb98a34ec4d9f97829eb133868063 [diff] |
Dialer: Fix Voicemail dialog's action button color * It currently takes the shade of colorPrimary, which is very light * Make it colorAccent, that way it should be fine Fixes: https://gitlab.com/LineageOS/issues/android/-/issues/6301 Change-Id: Iebd4edcfab3967bfef5559ec491fffdb97a7d570
diff --git a/java/com/android/dialer/voicemail/listui/error/res/values/styles.xml b/java/com/android/dialer/voicemail/listui/error/res/values/styles.xml index 03eddde..280fc09 100644 --- a/java/com/android/dialer/voicemail/listui/error/res/values/styles.xml +++ b/java/com/android/dialer/voicemail/listui/error/res/values/styles.xml
@@ -23,7 +23,7 @@ <item name="android:layout_marginStart">8dp</item> <item name="android:layout_marginEnd">8dp</item> <item name="android:padding">8dp</item> - <item name="android:textColor">?android:attr/colorPrimary</item> + <item name="android:textColor">?android:attr/colorAccent</item> <item name="android:fontFamily">"sans-serif-medium"</item> <item name="android:focusable">true</item> <item name="android:singleLine">true</item>