Skip to content

Commit

Permalink
ETA: make default 'false'
Browse files Browse the repository at this point in the history
Issue 15405
  • Loading branch information
david-allison committed Feb 13, 2024
1 parent 5f4b1ba commit 59d5b08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AnkiDroid/src/main/java/com/ichi2/anki/Reviewer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ open class Reviewer :
override fun restorePreferences(): SharedPreferences {
val preferences = super.restorePreferences()
prefHideDueCount = preferences.getBoolean("hideDueCount", false)
prefShowETA = preferences.getBoolean("showETA", true)
prefShowETA = preferences.getBoolean("showETA", false)
processor.setup()
prefFullscreenReview = isFullScreenReview(preferences)
actionButtons.setup(preferences)
Expand Down
2 changes: 1 addition & 1 deletion AnkiDroid/src/main/res/xml/preferences_appearance.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
android:title="@string/show_progress" />
<SwitchPreferenceCompat
android:key="@string/show_eta_preference"
android:defaultValue="true"
android:defaultValue="false"
android:summary="@string/show_eta_summ"
android:title="@string/show_eta" />
<SwitchPreferenceCompat
Expand Down

0 comments on commit 59d5b08

Please sign in to comment.