diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-19 17:09:13 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-19 17:09:13 +0300 |
| commit | e89a39bbc84b5c36092c0cfaeb39395080ede018 (patch) | |
| tree | ca7539d2ef7e14488997710d6cf4b9bdb5fb80f7 /org.fox.ttrss/src/main/res | |
| parent | 158bf6bfdd802cc30cad78c871883b62e42979b5 (diff) | |
add option to disable icon tinting
Diffstat (limited to 'org.fox.ttrss/src/main/res')
| -rwxr-xr-x | org.fox.ttrss/src/main/res/values/strings.xml | 3 | ||||
| -rwxr-xr-x | org.fox.ttrss/src/main/res/xml/preferences.xml | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/org.fox.ttrss/src/main/res/values/strings.xml b/org.fox.ttrss/src/main/res/values/strings.xml index 346a30c6..36d177c4 100755 --- a/org.fox.ttrss/src/main/res/values/strings.xml +++ b/org.fox.ttrss/src/main/res/values/strings.xml @@ -311,5 +311,6 @@ <string name="window_secure_mode">Secure window mode</string> <string name="enable_dynamic_colors_summary">Tints the UI according to color settings of your device</string> <string name="enable_dynamic_colors">Dynamic colors</string> - + <string name="enable_icon_tinting">Enable icon tinting</string> + <string name="enable_icon_tinting_summary">Disable if you have trouble distinguishing icons because of their color</string> </resources> diff --git a/org.fox.ttrss/src/main/res/xml/preferences.xml b/org.fox.ttrss/src/main/res/xml/preferences.xml index 6ceec5cc..19c718ca 100755 --- a/org.fox.ttrss/src/main/res/xml/preferences.xml +++ b/org.fox.ttrss/src/main/res/xml/preferences.xml @@ -80,6 +80,13 @@ android:key="window_secure_mode" android:summary="@string/window_secure_mode_summary" android:title="@string/window_secure_mode" /> + + <SwitchPreferenceCompat + android:defaultValue="true" + android:key="enable_icon_tinting" + android:summary="@string/enable_icon_tinting_summary" + android:title="@string/enable_icon_tinting" /> + </PreferenceCategory> <PreferenceCategory |