diff options
author | Alex Ning <chineseperson5@gmail.com> | 2022-01-21 12:37:31 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2022-01-21 12:37:31 +0000 |
commit | f33cf68624cd69b78605d3f85f6ee649138bd7ad (patch) | |
tree | 76a28a950671e9438a592761240084654d3e50ac /app/src/main/res | |
parent | e68f8ed4bca78214debc2ffafba7580bebdc63d0 (diff) | |
download | infinity-for-reddit-f33cf68624cd69b78605d3f85f6ee649138bd7ad.tar infinity-for-reddit-f33cf68624cd69b78605d3f85f6ee649138bd7ad.tar.gz infinity-for-reddit-f33cf68624cd69b78605d3f85f6ee649138bd7ad.tar.bz2 infinity-for-reddit-f33cf68624cd69b78605d3f85f6ee649138bd7ad.tar.lz infinity-for-reddit-f33cf68624cd69b78605d3f85f6ee649138bd7ad.tar.xz infinity-for-reddit-f33cf68624cd69b78605d3f85f6ee649138bd7ad.tar.zst infinity-for-reddit-f33cf68624cd69b78605d3f85f6ee649138bd7ad.zip |
New option: Hide Comment Awards.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/strings.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/xml/comment_preferences.xml | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 8751ce69..148fedc6 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -626,6 +626,7 @@ <string name="settings_custom_content_font_family_title">Custom Content Font Family</string> <string name="settings_fixed_height_preview_in_card_title">Fixed Height in Card</string> <string name="settings_hide_text_post_content">Hide Text Post Content</string> + <string name="settings_hide_comment_awards_title">Hide Comment Awards</string> <string name="no_link_available">Cannot get the link</string> diff --git a/app/src/main/res/xml/comment_preferences.xml b/app/src/main/res/xml/comment_preferences.xml index db82bde9..55d48db9 100644 --- a/app/src/main/res/xml/comment_preferences.xml +++ b/app/src/main/res/xml/comment_preferences.xml @@ -32,4 +32,14 @@ app:key="fully_collapse_comment" android:title="@string/settings_fully_collapse_comment_title" /> + <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference + app:defaultValue="false" + app:key="fully_collapse_comment" + android:title="@string/settings_fully_collapse_comment_title" /> + + <ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference + app:defaultValue="false" + app:key="hide_comment_awards" + android:title="@string/settings_hide_comment_awards_title" /> + </PreferenceScreen>
\ No newline at end of file |