Tweak timeline filter defaults

This commit is contained in:
Mike Barnes 2020-12-22 14:55:38 +11:00
parent db77d7ee53
commit e4c1637187
2 changed files with 2 additions and 2 deletions

View file

@ -140,7 +140,7 @@ class PreferencesFragment : PreferenceFragmentCompat(), Injectable {
} }
switchPreference { switchPreference {
setDefaultValue(true) setDefaultValue(false)
key = PrefKeys.SHOW_NOTIFICATIONS_FILTER key = PrefKeys.SHOW_NOTIFICATIONS_FILTER
setTitle(R.string.pref_title_show_notifications_filter) setTitle(R.string.pref_title_show_notifications_filter)
isSingleLineTitle = false isSingleLineTitle = false

View file

@ -39,7 +39,7 @@ class TabFilterPreferencesFragment : PreferenceFragmentCompat() {
checkBoxPreference { checkBoxPreference {
setTitle(R.string.pref_title_show_replies) setTitle(R.string.pref_title_show_replies)
key = PrefKeys.TAB_FILTER_HOME_REPLIES key = PrefKeys.TAB_FILTER_HOME_REPLIES
setDefaultValue(false) setDefaultValue(true)
isIconSpaceReserved = false isIconSpaceReserved = false
} }
} }