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