Change inline images default to false

This commit is contained in:
Corewala 2022-01-09 12:27:24 -05:00
parent 6e22bf3218
commit 9ac10f13fd
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class SettingsFragment: PreferenceFragmentCompat(), Preference.OnPreferenceChang
webCategory.addPreference(useCustomTabsPreference)
val showInlineImages = SwitchPreferenceCompat(context)
showInlineImages.setDefaultValue(true)
showInlineImages.setDefaultValue(false)
showInlineImages.key = "show_inline_images"
showInlineImages.title = getString(R.string.show_inline_images)
webCategory.addPreference(showInlineImages)