Quote:
Originally Posted by pisymbol
I noticed something else: In the frontend/device/kobo/device.lua file, I have this section:
-- Kobo Aura H2O:
local KoboDahlia = Kobo:new{
model = "Kobo_dahlia",
hasFrontlight = yes,
touch_phoenix_protocol = true,
display_dpi = 265,
-- the bezel covers the top 11 pixels:
viewport = Geom:new{x=0, y=11, w=1080, h=1429},
}
You see there the modified geometry due to 11 pixels of the screen covered by the bezel. However, per specification, the screen has a height of 1430 px. 1430-11=1419, so I would've expected to see "h=1419" in the config. Does that make sense? Unfortunately, changing this does not resolve my issue. 
|
It's 1440 (hardware) -11 (bezel) = 1429 (what you can actually use).
Changing it to 1419 will cut off 10 pixels at the bottom.
It is a potential workaround strategy you could use if you're willing to give up on part of the top of your screen, but I imagine you'd prefer something else.
y=50, h=1390
You could try Sketch by baskerville to see about touch responsivity:
https://www.mobileread.com/forums/sh...d.php?t=285376
Shifting the menu to the right should be fairly simple by inserting some vertical padding here:
https://github.com/koreader/koreader...hmenu.lua#L162
But I find this "works in Nickel" thing rather odd.