mirror of
https://github.com/Corewala/Buran
synced 2025-01-03 05:34:28 +00:00
Made self-updating false by default
This commit is contained in:
parent
95ed0b815b
commit
6d4dbbda94
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class SettingsFragment: PreferenceFragmentCompat(), Preference.OnPreferenceChang
|
||||||
appCategory.addPreference(aboutUpdater)
|
appCategory.addPreference(aboutUpdater)
|
||||||
|
|
||||||
val checkForUpdates = SwitchPreferenceCompat(context)
|
val checkForUpdates = SwitchPreferenceCompat(context)
|
||||||
checkForUpdates.setDefaultValue(true)
|
checkForUpdates.setDefaultValue(false)
|
||||||
checkForUpdates.key = "check_for_updates"
|
checkForUpdates.key = "check_for_updates"
|
||||||
checkForUpdates.title = getString(R.string.check_for_updates)
|
checkForUpdates.title = getString(R.string.check_for_updates)
|
||||||
appCategory.addPreference(checkForUpdates)
|
appCategory.addPreference(checkForUpdates)
|
||||||
|
|
Loading…
Reference in a new issue