Add dev flavor. Bugfix in reader

This commit is contained in:
len
2017-03-08 18:56:27 +01:00
parent 6020cd011d
commit c437f1473c
2 changed files with 8 additions and 2 deletions

View File

@ -230,7 +230,10 @@ abstract class PagerReader : BaseReader() {
*/
protected fun setPagesOnAdapter() {
if (pages.isNotEmpty()) {
// Prevent a wrong active page when changing chapters with the navigation buttons.
val currPage = currentPage
adapter.pages = pages
currentPage = currPage
if (currentPage == pager.currentItem) {
onPageChanged(currentPage)
} else {