Remove confirm exit option

Redundant with predictive back, but also just sort of pointless since it doesn't help
with any sort of app state retention.
This commit is contained in:
arkon
2023-05-31 18:51:01 -04:00
parent 0ac38297f4
commit 8f4bc71cf7
5 changed files with 7 additions and 43 deletions

View File

@@ -11,8 +11,6 @@ class BasePreferences(
private val preferenceStore: PreferenceStore,
) {
fun confirmExit() = preferenceStore.getBoolean("pref_confirm_exit", false)
fun downloadedOnly() = preferenceStore.getBoolean("pref_downloaded_only", false)
fun incognitoMode() = preferenceStore.getBoolean("incognito_mode", false)