Use of new functions to jump to next/previous chapter that also works in 2-page mode

pull/729/head
WS64 10 years ago
parent 9bdcaa2b46
commit 225966ef62

@ -246,17 +246,17 @@ function ReaderRolling:onResume()
end end
function ReaderRolling:onDoubleTapForward() function ReaderRolling:onDoubleTapForward()
local i = self.ui.toc:_getChapterPagesLeft(self.current_page,-1) local i = self.ui.toc:_getNextChapter(self.current_page+self.ui.document:getVisiblePageCount())
if i ~= "" then if i ~= "" then
self:onGotoViewRel(i+1) self:onGotoPage(i)
end end
return true return true
end end
function ReaderRolling:onDoubleTapBackward() function ReaderRolling:onDoubleTapBackward()
local i = self.ui.toc:_getChapterPagesDone(self.current_page) local i = self.ui.toc:_getPreviousChapter(self.current_page)
if i ~= "" then if i ~= "" then
self:onGotoViewRel(i) self:onGotoPage(i)
end end
return true return true
end end

Loading…
Cancel
Save