diff options
| author | 2022-12-02 17:42:24 +0000 | |
|---|---|---|
| committer | 2022-12-02 17:42:24 +0000 | |
| commit | a799f1040a06f9377d6a211de20f29af726e10fd (patch) | |
| tree | 8434db1ec23373d81c38e8a7bb34fdafc4b9ee47 | |
| parent | 9bb27a054d6cb0d7419250ebcf418b284d91bf6a (diff) | |
Show side fingerprint sensor on bouncer also for small screens
This sets config_show_sidefps_hint_on_bouncer to true as default, and removes the large screen override.
Bug: 260195934
Test: Current tests && verified manually
Change-Id: Icc92a0915f229e716e653e742173181caad050da
| -rw-r--r-- | packages/SystemUI/res/values-sw600dp/config.xml | 3 | ||||
| -rw-r--r-- | packages/SystemUI/res/values/config.xml | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/packages/SystemUI/res/values-sw600dp/config.xml b/packages/SystemUI/res/values-sw600dp/config.xml index 80628f903e76..f4434e8d0044 100644 --- a/packages/SystemUI/res/values-sw600dp/config.xml +++ b/packages/SystemUI/res/values-sw600dp/config.xml @@ -36,7 +36,4 @@ <integer name="qs_security_footer_maxLines">1</integer> <bool name="config_use_large_screen_shade_header">true</bool> - - <!-- Whether to show the side fps hint while on bouncer --> - <bool name="config_show_sidefps_hint_on_bouncer">true</bool> </resources> diff --git a/packages/SystemUI/res/values/config.xml b/packages/SystemUI/res/values/config.xml index 7a362040427a..4cda8c7b5328 100644 --- a/packages/SystemUI/res/values/config.xml +++ b/packages/SystemUI/res/values/config.xml @@ -552,7 +552,7 @@ <string name="config_preferredEmergencySosPackage" translatable="false"></string> <!-- Whether to show the side fps hint while on bouncer --> - <bool name="config_show_sidefps_hint_on_bouncer">false</bool> + <bool name="config_show_sidefps_hint_on_bouncer">true</bool> <!-- Whether to use the split 2-column notification shade --> <bool name="config_use_split_notification_shade">false</bool> |