diff options
| -rw-r--r-- | core/res/res/values/config.xml | 4 | ||||
| -rw-r--r-- | core/res/res/values/styles_device_defaults.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 7e5a735236cd..66e56bf55a51 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -3256,8 +3256,8 @@ <dimen name="config_buttonCornerRadius">@dimen/control_corner_material</dimen> <!-- Controls whether system buttons use all caps for text --> <bool name="config_buttonTextAllCaps">true</bool> - <!-- Name of the font family used for system buttons --> - <string name="config_fontFamilyButton">@string/font_family_button_material</string> + <!-- Name of the font family used for system surfaces where the font should use medium weight --> + <string name="config_headlineFontFamilyMedium">@string/font_family_button_material</string> <string translatable="false" name="config_batterySaverDeviceSpecificConfig"></string> diff --git a/core/res/res/values/styles_device_defaults.xml b/core/res/res/values/styles_device_defaults.xml index 189b3b7b0481..1a51c1db7c4c 100644 --- a/core/res/res/values/styles_device_defaults.xml +++ b/core/res/res/values/styles_device_defaults.xml @@ -225,7 +225,7 @@ easier. <style name="TextAppearance.DeviceDefault.SearchResult.Subtitle" parent="TextAppearance.Material.SearchResult.Subtitle"/> <style name="TextAppearance.DeviceDefault.Widget" parent="TextAppearance.Material.Widget"/> <style name="TextAppearance.DeviceDefault.Widget.Button" parent="TextAppearance.Material.Widget.Button"> - <item name="fontFamily">@string/config_fontFamilyButton</item> + <item name="fontFamily">@string/config_headlineFontFamilyMedium</item> <item name="textAllCaps">@bool/config_buttonTextAllCaps</item> </style> <style name="TextAppearance.DeviceDefault.Widget.IconMenu.Item" parent="TextAppearance.Material.Widget.IconMenu.Item"/> |