Make jumping to manga chapters optional

This commit is contained in:
arkon
2020-06-25 18:10:46 -04:00
parent f2f6628693
commit 2cb7624953
5 changed files with 15 additions and 2 deletions

View File

@@ -72,6 +72,8 @@ class MangaInfoChaptersController(private val fromSource: Boolean = false) :
private var chaptersHeaderAdapter: MangaChaptersHeaderAdapter? = null
private var chaptersAdapter: ChaptersAdapter? = null
private var skippedInfoOnOpen: Boolean = false
/**
* Action mode for multiple selection.
*/
@@ -305,9 +307,10 @@ class MangaInfoChaptersController(private val fromSource: Boolean = false) :
// Update view.
mangaInfoAdapter?.update(manga, source)
// Skips directly to chapters list by default if navigated to from the library
if (!fromSource) {
// Skips directly to chapters list if navigated to from the library
if (!fromSource && !skippedInfoOnOpen && preferences.jumpToChapters()) {
(binding.recycler.layoutManager as LinearLayoutManager).scrollToPositionWithOffset(1, 0)
skippedInfoOnOpen = true
}
} else {
// Initialize manga.

View File

@@ -72,6 +72,11 @@ class SettingsLibraryController : SettingsController() {
}
.launchIn(scope)
}
switchPreference {
key = Keys.jumpToChapters
titleRes = R.string.pref_jump_to_chapters
defaultValue = false
}
}
preferenceCategory {