Made self-updating false by default

This commit is contained in:
Corewala 2022-06-18 12:45:00 -04:00
parent 95ed0b815b
commit 6d4dbbda94
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class SettingsFragment: PreferenceFragmentCompat(), Preference.OnPreferenceChang
appCategory.addPreference(aboutUpdater)
val checkForUpdates = SwitchPreferenceCompat(context)
checkForUpdates.setDefaultValue(true)
checkForUpdates.setDefaultValue(false)
checkForUpdates.key = "check_for_updates"
checkForUpdates.title = getString(R.string.check_for_updates)
appCategory.addPreference(checkForUpdates)