diff --git a/Android-tips-and-tricks.md b/Android-tips-and-tricks.md index 37217eb..a65342e 100644 --- a/Android-tips-and-tricks.md +++ b/Android-tips-and-tricks.md @@ -4,7 +4,7 @@ KOReader supports [keymappings](https://github.com/koreader/koreader/wiki/Keymap **NOTE:** it is impossible for a non-launcher app to override the behaviour of the home key. The rest of physical/virtual keys can be mapped. -#### example 1: add support for the custom keys used on the [Nook Glowlight 3](https://www.mobileread.com/forums/showpost.php?p=3922840&postcount=23) (top keys as page back and bottom keys as page forward) +#### example: add support for the custom keys used on the [Nook Glowlight 3](https://www.mobileread.com/forums/showpost.php?p=3922840&postcount=23) (top keys as page back and bottom keys as page forward) ```lua return { @@ -15,15 +15,6 @@ return { } ``` -#### example 2: add support for the custom keys used on the [Tolino Epos 2](https://github.com/koreader/koreader/issues/5761#issuecomment-573358732) - -```lua -return { - [21] = "LPgBack", - [22] = "LPgFwd", -} -``` - To know which keycodes are being emmited by your device please follow [this link](https://github.com/koreader/koreader/issues/5761#issuecomment-573345775)