mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
fix: adjust pan rate for eink and non-eink screens
This commit is contained in:
committed by
Frans de Jonge
parent
fc12ee6537
commit
a943b73303
@@ -8,7 +8,6 @@ local UIManager = require("ui/uimanager")
|
||||
local logger = require("logger")
|
||||
local _ = require("gettext")
|
||||
|
||||
local pan_rate = Screen.eink and 4.0 or 10.0
|
||||
|
||||
--[[
|
||||
Rolling is just like paging in page-based documents except that
|
||||
@@ -31,6 +30,7 @@ local pan_rate = Screen.eink and 4.0 or 10.0
|
||||
rendering.
|
||||
--]]
|
||||
local ReaderRolling = InputContainer:new{
|
||||
pan_rate = 30, -- default 30 ops, will be adjusted in readerui
|
||||
old_doc_height = nil,
|
||||
old_page = nil,
|
||||
current_pos = 0,
|
||||
@@ -225,7 +225,7 @@ function ReaderRolling:setupTouchZones()
|
||||
{
|
||||
id = "rolling_pan",
|
||||
ges = "pan",
|
||||
rate = pan_rate,
|
||||
rate = self.pan_rate,
|
||||
screen_zone = {
|
||||
ratio_x = 0, ratio_y = 0, ratio_w = 1, ratio_h = 1,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user