diff options
author | Danny Lin <danny@kdrag0n.dev> | 2021-10-05 21:02:12 -0700 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-05-05 00:39:05 +0800 |
commit | 59253bf558035a54e46a15413c7e3f8e02460f09 (patch) | |
tree | cc039d101394e6e8726ca14e7d17667323d00e07 | |
parent | 857bbfb46e424de54728510d65912887ff8b0f90 (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 cb963e6ffc89..e82230ab5fbc 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> |