mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
fix direction of up/down pan
This commit is contained in:
@@ -291,10 +291,10 @@ function mainloop()
|
||||
offset_x = offset_x - x
|
||||
goto(pageno)
|
||||
elseif ev.code == KEY_FW_UP then
|
||||
offset_y = offset_y - y
|
||||
offset_y = offset_y + y
|
||||
goto(pageno)
|
||||
elseif ev.code == KEY_FW_DOWN then
|
||||
offset_y = offset_y + y
|
||||
offset_y = offset_y - y
|
||||
goto(pageno)
|
||||
elseif ev.code == KEY_FW_PRESS then
|
||||
if shiftmode then
|
||||
|
||||
Reference in New Issue
Block a user