Make question mark initialy disabled

This commit is contained in:
Lucas Lima 2020-07-05 21:12:26 -03:00
parent 4772911173
commit 047cb21844
No known key found for this signature in database
GPG key ID: 0259A3F43EC1027A
2 changed files with 3 additions and 3 deletions

View file

@ -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)

View file

@ -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" />