New option: Settings->Interface->Comment->Comment Divider Type.

This commit is contained in:
Docile-Alligator
2022-11-14 22:01:31 +11:00
parent af870c157b
commit 67b6906ead
6 changed files with 66 additions and 6 deletions

View File

@@ -669,4 +669,14 @@
<item>144</item>
</string-array>
<string-array name="settings_comment_divider_type">
<item>Normal</item>
<item>Only on top-level comments</item>
</string-array>
<string-array name="settings_comment_divider_type_values">
<item>0</item>
<item>1</item>
</string-array>
</resources>

View File

@@ -647,6 +647,7 @@
<string name="settings_reddit_video_default_resolution">Reddit Video Default Resolution</string>
<string name="settings_easier_to_watch_in_full_screen_title">Easier to Watch in Full Screen</string>
<string name="settings_hide_fab_in_post_feed">Hide FAB in Post Feed</string>
<string name="settings_comment_divider_type">Comment Divider Type</string>
<string name="no_link_available">Cannot get the link</string>

View File

@@ -12,6 +12,15 @@
app:key="show_comment_divider"
app:title="@string/settings_show_comment_divider_title" />
<ml.docilealligator.infinityforreddit.customviews.CustomFontListPreference
app:defaultValue="0"
app:key="comment_divider_type"
android:title="@string/settings_comment_divider_type"
app:entries="@array/settings_comment_divider_type"
app:entryValues="@array/settings_comment_divider_type_values"
app:useSimpleSummaryProvider="true"
app:isPreferenceVisible="false" />
<ml.docilealligator.infinityforreddit.customviews.CustomFontSwitchPreference
app:defaultValue="false"
app:key="show_only_one_comment_level_indicator"