diff options
author | Danny Lin <danny@kdrag0n.dev> | 2021-10-05 21:02:12 -0700 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-01-26 11:42:56 +0800 |
commit | f3d4afb246710a267a8bbcaa8317d8d56feb54d6 (patch) | |
tree | beff4ed3b02f7e7f588cb8b75a48cb44668fc541 | |
parent | 0e06624ef9c431446a9f5a15a1e906a741fdecce (diff) |
SystemUI: Fix QS status font weight mismatch in dark mode
Text in the QS status bar is medium in light mode and regular in dark
mode. Fix the mismatch.
Change-Id: Ic6e5dc547d4ded9d231f88f6cac3e1e9f8483d5e
-rw-r--r-- | packages/SystemUI/res/values-night/styles.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/res/values-night/styles.xml b/packages/SystemUI/res/values-night/styles.xml index ffcc3a821d36..dd999837a1ba 100644 --- a/packages/SystemUI/res/values-night/styles.xml +++ b/packages/SystemUI/res/values-night/styles.xml @@ -25,7 +25,7 @@ </style> <style name="TextAppearance.QS.Status" parent="TextAppearance.QS.TileLabel.Secondary"> - <item name="android:fontFamily">@*android:string/config_bodyFontFamily</item> + <item name="android:fontFamily">@*android:string/config_bodyFontFamilyMedium</item> <item name="android:textColor">?android:attr/textColorPrimary</item> </style> |