[UX] Extend edge zones (#5181)

See: https://github.com/koreader/koreader/pull/5179#discussion_r310676845
This commit is contained in:
Robert
2019-08-05 21:24:58 +02:00
committed by Frans de Jonge
parent 30f39979f6
commit dac2458427
2 changed files with 15 additions and 15 deletions

View File

@@ -71,14 +71,14 @@ function ReaderFrontLight:onChangeFlIntensity(ges, direction)
local powerd = Device:getPowerDevice()
local gestureScale
if ges.direction == "south" or ges.direction == "north" then
gestureScale = Screen:getHeight() * 7/8 * 0.8
gestureScale = Screen:getHeight() * 0.8
elseif ges.direction == "west" or ges.direction == "east" then
gestureScale = Screen:getWidth() * 7/8 * 0.8
gestureScale = Screen:getWidth() * 0.8
else
local width = Screen:getWidth()
local height = Screen:getHeight()
-- diagonal
gestureScale = math.sqrt(width * width + height * height) * 7/8 * 0.8
gestureScale = math.sqrt(width * width + height * height) * 0.8
end
if powerd.fl_intensity == nil then return false end
@@ -130,14 +130,14 @@ function ReaderFrontLight:onChangeFlWarmth(ges, direction)
local gestureScale
if ges.direction == "south" or ges.direction == "north" then
gestureScale = Screen:getHeight() * 7/8 * 0.8
gestureScale = Screen:getHeight() * 0.8
elseif ges.direction == "west" or ges.direction == "east" then
gestureScale = Screen:getWidth() * 7/8 * 0.8
gestureScale = Screen:getWidth() * 0.8
else
local width = Screen:getWidth()
local height = Screen:getHeight()
-- diagonal
gestureScale = math.sqrt(width * width + height * height) * 7/8 * 0.8
gestureScale = math.sqrt(width * width + height * height) * 0.8
end
local steps_tbl = {}