From de1146c0b505c96a24f3d530f1205fc43e521c6f Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Tue, 21 May 2019 20:31:23 +0200 Subject: [PATCH] [Kobo] Tweak the Aura viewport (#5034) Officially, the bezel should only cover the bottom 10 pixels ;). (The Aura was officially advertised as having a 758x1014 screen). --- frontend/device/kobo/device.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/device/kobo/device.lua b/frontend/device/kobo/device.lua index bcce79e85..fce57095e 100644 --- a/frontend/device/kobo/device.lua +++ b/frontend/device/kobo/device.lua @@ -115,8 +115,8 @@ local KoboPhoenix = Kobo:new{ hasFrontlight = yes, touch_phoenix_protocol = true, display_dpi = 212, - -- the bezel covers 12 pixels at the bottom: - viewport = Geom:new{x=0, y=0, w=758, h=1012}, + -- The bezel covers 10 pixels at the bottom: + viewport = Geom:new{x=0, y=0, w=758, h=1014}, -- NOTE: May have a buggy kernel, according to the nightmode hack... canHWInvert = no, }