View Single Post
Old 04-05-2025, 05:25 PM   #4
jonnyl
Groupie
jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.jonnyl is no e-book dilettante.
 
Posts: 168
Karma: 53122
Join Date: Jan 2021
Device: Likebook Mars
You can achieve this via a user patch. Create a folder 'patches' in koreader (if it doesn't exist yet), and a file named '2-ignorebottommenutap.lua' (i.e., koreader/patches/2-ignorebottommenutap.lua) with the following contents:

Code:
local ReaderConfig = require("apps/reader/modules/readerconfig")

function ReaderConfig:onTapShowConfigMenu()
    if self.activation_menu ~= "swipe" then return end
end
Keep both 'With a tap' and 'With a swipe' active in the KOReader 'Activate menu' settings. You will be able to open the top menu with either gesture, but the bottom menu only via swipe after applying this patch.
jonnyl is offline   Reply With Quote