Disable mirror switching by default

pull/529/head
Koitharu 3 years ago
parent 3ef033c700
commit 366e4f0da8
Signed by: Koitharu
GPG Key ID: 676DEE768C17A9D7

@ -188,7 +188,7 @@ class AppSettings @Inject constructor(@ApplicationContext context: Context) {
set(value) = prefs.edit { putBoolean(KEY_PROTECT_APP_BIOMETRIC, value) }
val isMirrorSwitchingAvailable: Boolean
get() = prefs.getBoolean(KEY_MIRROR_SWITCHING, true)
get() = prefs.getBoolean(KEY_MIRROR_SWITCHING, false)
val isExitConfirmationEnabled: Boolean
get() = prefs.getBoolean(KEY_EXIT_CONFIRM, false)

@ -41,7 +41,7 @@
android:title="@string/images_proxy_title" />
<SwitchPreferenceCompat
android:defaultValue="true"
android:defaultValue="false"
android:key="mirror_switching"
android:summary="@string/mirror_switching_summary"
android:title="@string/mirror_switching" />

Loading…
Cancel
Save