View Single Post
Old 02-16-2018, 09:34 AM   #2
Frenzie
Wizard
Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.
 
Posts: 1,742
Karma: 730681
Join Date: Oct 2014
Location: Antwerp
Device: Kobo Aura H2O
You can, but it's a touch awkward. Just set the width and height of the backward/forward tap zone to 0.

https://github.com/koreader/koreader...ts.lua#L74-L75

Quote:
-- To make configuration changes that persists between (nightly) releases,
-- copy defaults.lua to defaults.persistent.lua and make the changes there.
So basically, create a defaults.persistent.lua with something like:

Code:
DTAP_ZONE_FORWARD = {x = 0, y = 0, w = 0, h = 0}
DTAP_ZONE_BACKWARD = {x = 0, y = 0, w = 0, h = 0}
Frenzie is offline   Reply With Quote