1
0
Fork 0
mirror of https://github.com/Corewala/Buran synced 2024-12-22 07:42:43 +00:00

Made self-updating false by default

This commit is contained in:
Corewala 2022-06-18 12:45:00 -04:00
parent 95ed0b815b
commit 6d4dbbda94

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)