From 0dc809942586cc115f1adcff820ebff47542cf0a Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 24 Jul 2018 21:29:44 +0200 Subject: [PATCH] Footer: smaller default touch zone (#4099) 1/32 of the screen height instead of 1/16. Fix impossible selection/highlighting/dict lookup of words on the last line of page. --- defaults.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults.lua b/defaults.lua index 345c7a883..e2d1fdcf4 100644 --- a/defaults.lua +++ b/defaults.lua @@ -70,7 +70,7 @@ FOLLOW_LINK_TIMEOUT = 0.5 -- h: height of tap zone in proportion of screen height DTAP_ZONE_MENU = {x = 1/8, y = 0, w = 3/4, h = 1/8} DTAP_ZONE_CONFIG = {x = 1/8, y = 7/8, w = 3/4, h = 1/8} -DTAP_ZONE_MINIBAR = {x = 0, y = 15/16, w = 1, h = 1/16} +DTAP_ZONE_MINIBAR = {x = 0, y = 31/32, w = 1, h = 1/32} DTAP_ZONE_FORWARD = {x = 1/4, y = 0, w = 3/4, h = 1} DTAP_ZONE_BACKWARD = {x = 0, y = 0, w = 1/4, h = 1} DTAP_ZONE_BOOKMARK = {x = 7/8, y = 0, w = 1/8, h = 1/8}