Make question mark initialy disabled
This commit is contained in:
parent
4772911173
commit
047cb21844
2 changed files with 3 additions and 3 deletions
|
@ -69,7 +69,7 @@ class PreferencesRepository(
|
|||
getBoolean(PREFERENCE_ANIMATION, true)
|
||||
|
||||
override fun useQuestionMark(): Boolean =
|
||||
getBoolean(PREFERENCE_QUESTION_MARK, true)
|
||||
getBoolean(PREFERENCE_QUESTION_MARK, false)
|
||||
|
||||
override fun isSoundEffectsEnabled(): Boolean =
|
||||
getBoolean(PREFERENCE_SOUND_EFFECTS, false)
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
app:iconSpaceReserved="false">
|
||||
|
||||
<SwitchPreferenceCompat
|
||||
android:checked="true"
|
||||
android:defaultValue="true"
|
||||
android:checked="false"
|
||||
android:defaultValue="false"
|
||||
android:key="preference_use_question_mark"
|
||||
android:title="@string/use_question_mark"
|
||||
app:iconSpaceReserved="false" />
|
||||
|
|
Loading…
Reference in a new issue