From a09211cdc94d2df1ea3cb888539d5e61767e77a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Fern=C3=A1ndez?= Date: Mon, 2 Dec 2019 19:25:34 +0100 Subject: [PATCH] Updated Android tips and tricks (markdown) --- Android-tips-and-tricks.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Android-tips-and-tricks.md b/Android-tips-and-tricks.md index c60df9c..a4660bf 100644 --- a/Android-tips-and-tricks.md +++ b/Android-tips-and-tricks.md @@ -18,4 +18,15 @@ return { } ``` +#### example 3: add support for the custom keys used on the [Nook Glowlight 3](https://www.mobileread.com/forums/showpost.php?p=3922756&postcount=18) (top keys as page back and bottom keys as page forward) + +```lua +return { + [139] = "LPgBack", + [140] = "LPgFwd", + [141] = "LPgBack", + [142] = "LPgFwd", +} +``` + For more information see https://github.com/koreader/koreader/issues/5558#issuecomment-548993898 \ No newline at end of file