View Single Post
Old 07-21-2014, 06:36 AM   #39
tshering
Wizard
tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.tshering ought to be getting tired of karma fortunes by now.
 
Posts: 3,489
Karma: 2914715
Join Date: Jun 2012
Device: kobo touch
Quote:
Originally Posted by cimh View Post
Thank you. The name change in the script takes me a step further - but I am not quite there as I arrive at an unresponsive file manager and the only way out seems to be a reset.
I guess you are seeing the problem of some Kobo Touch devices, maybe models B and C, (you can find information somewhere in the koreader thread).

Find in koreader/frontend/ui/input.lua
Code:
-- For single-touch events (ABS.code).
local ABS_X = 00
local ABS_Y = 01
and exchange the values of ABS_X and ABS_Y:
Code:
-- For single-touch events (ABS.code).
local ABS_X = 01
local ABS_Y = 00

Quote:
Originally Posted by cimh View Post
I am using the 1.1 version of the scripts from an earlier post from shadoooo where 1.2 was modified so that I could see the boot options:
I see! Judging form the file name, I thought 1.2 is an updated version of 1.1.

Last edited by tshering; 07-28-2014 at 03:35 AM. Reason: inserted the file name and path of input.lua for readers' convenience
tshering is offline   Reply With Quote