View Single Post
Old 02-08-2019, 04:06 AM   #2
Hamsky
Enthusiast
Hamsky began at the beginning.
 
Posts: 34
Karma: 10
Join Date: Feb 2019
Device: Kobo Aura, Kobo H2O
Found a way:

Goto .adds\koreader\frontend\apps\reader\modules\reader gesture.lua

Find lines and change 10 to 1 in highlighted line.

Code:
  {_("Back 10 pages"), "page_update_down10", not self.is_docless},
        {_("Forward 1 page"), "page_update_up10", not self.is_docless},
        {_("Folder up"), "folder_up", self.is_docless},
...

Code:
    elseif action == "bookmarks" then
        self.ui:handleEvent(Event:new("ShowBookmark"))
    elseif action == "page_update_up10" then
        self:pageUpdate(1)
    elseif action == "page_update_down10" then
        self:pageUpdate(-10)
In attachment my config (just remove .txt in the end)
Attached Files
File Type: txt readergesture.lua.txt (8.8 KB, 221 views)
Hamsky is offline   Reply With Quote