View Single Post
Old 10-25-2017, 08:13 AM   #8
Frenzie
Wizard
Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.Frenzie ought to be getting tired of karma fortunes by now.
 
Posts: 1,763
Karma: 731681
Join Date: Oct 2014
Location: Antwerp
Device: Kobo Aura H2O
Quote:
Originally Posted by pisymbol View Post
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.
Frenzie is offline   Reply With Quote