From 3a92f3385c8c5b50afa04e6700415a837810cd15 Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Tue, 15 Nov 2022 18:23:23 +0100 Subject: [PATCH] PB: Handle KEY_HOME It possibly historically never made it out of InkView in the past, but apparently that's no longer the case and/or every other key behaves the same way anyway, so it's harmless at worst. Fix #9791 --- frontend/device/pocketbook/device.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/device/pocketbook/device.lua b/frontend/device/pocketbook/device.lua index 4d1f9ca5b..9a659afe7 100644 --- a/frontend/device/pocketbook/device.lua +++ b/frontend/device/pocketbook/device.lua @@ -192,6 +192,7 @@ function PocketBook:init() device = self, raw_input = raw_input, event_map = setmetatable({ + [C.KEY_HOME] = "Home", [C.KEY_MENU] = "Menu", [C.KEY_PREV] = "LPgBack", [C.KEY_NEXT] = "LPgFwd",