mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
Fix migration setting for reader tap/disabled nav layout
old default was true, so if this was never toggled by the user, they'll now be unable to tap and get confused... ...at least thats what i see from looking at old discord messages
This commit is contained in:
parent
9532ad340a
commit
4f6d930d2b
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ object Migrations {
|
|||
scope.launchIO {
|
||||
LibraryPresenter.updateRatiosAndColors()
|
||||
}
|
||||
val oldReaderTap = prefs.getBoolean("reader_tap", false)
|
||||
val oldReaderTap = prefs.getBoolean("reader_tap", true)
|
||||
if (!oldReaderTap) {
|
||||
preferences.navigationModePager().set(5)
|
||||
preferences.navigationModeWebtoon().set(5)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue