Quote:
Originally Posted by giorgio130
Did you try tapping everywhere on the screen? even in places that look just empty? I always had the doubt that with Touch the screen coordinates are swapped, so this could be the cause.
|
Changing 00 to 01 and 01 to 00 in the code below solved my problem with mixed coordinates. I found it after many hours of trying everything else. Now koreader works perfectly. Hope that helps some one.
Hardware: Kobo Touch N905C, firmware 2.6.2
File edited: input.lua
Code:
-- For single-touch events (ABS.code).
local ABS_X = 00 --old line
local ABS_Y = 01 --old line
local ABS_X = 01 --new line
local ABS_Y = 00 --new line