diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-05-15 00:52:23 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-05-15 00:52:23 +0000 |
commit | 49ffafdfd492ea8e6190e36457813f05311b008d (patch) | |
tree | 0f2fc53596bc01d93c8ea651682c155976106b0b /app/src/main/res | |
parent | b9a2a1adead1f741d43d79f35cda44330c391580 (diff) | |
download | infinity-for-reddit-49ffafdfd492ea8e6190e36457813f05311b008d.tar infinity-for-reddit-49ffafdfd492ea8e6190e36457813f05311b008d.tar.gz infinity-for-reddit-49ffafdfd492ea8e6190e36457813f05311b008d.tar.bz2 infinity-for-reddit-49ffafdfd492ea8e6190e36457813f05311b008d.tar.lz infinity-for-reddit-49ffafdfd492ea8e6190e36457813f05311b008d.tar.xz infinity-for-reddit-49ffafdfd492ea8e6190e36457813f05311b008d.tar.zst infinity-for-reddit-49ffafdfd492ea8e6190e36457813f05311b008d.zip |
Hiding post fliar in PostFragment is now available.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/values/strings.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/xml/post_preferences.xml | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index c3456e0e..6dd4979f 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -541,6 +541,7 @@ <string name="settings_user_default_sort_time_title">User Default Sort Time</string> <string name="settings_click_to_show_media_in_gallery_layout">Click to Show Media in Gallery Layout</string> <string name="settings_hide_post_type">Hide Post Type</string> + <string name="settings_hide_post_flair">Hide Post Flair</string> <string name="settings_hide_the_number_of_awards">Hide the Number of Awards</string> <string name="settings_hide_subreddit_and_user_prefix">Hide Subreddit and User Prefix</string> <string name="settings_hide_the_number_of_votes">Hide the Number of Votes</string> diff --git a/app/src/main/res/xml/post_preferences.xml b/app/src/main/res/xml/post_preferences.xml index 7e47f86c..7ea526a5 100644 --- a/app/src/main/res/xml/post_preferences.xml +++ b/app/src/main/res/xml/post_preferences.xml @@ -21,6 +21,11 @@ <SwitchPreference app:defaultValue="false" + app:key="hide_post_flair" + app:title="@string/settings_hide_post_flair" /> + + <SwitchPreference + app:defaultValue="false" app:key="hide_the_number_of_awards" app:title="@string/settings_hide_the_number_of_awards" /> |