diff options
author | Darren-Hill <Darren-Hill@users.noreply.github.com> | 2019-05-11 16:21:06 +0100 |
---|---|---|
committer | Darren <darrenhill@kodi.tv> | 2019-05-15 21:50:18 +0100 |
commit | 950016066a0defdfc470753eb359edb3e81c0273 (patch) | |
tree | 02734430eca24565036d8a55fdaec00fe055c70e /system | |
parent | 3ca6e1cacb80ca8e6ad2abbd6ba3354f1ed9eb24 (diff) |
Blade menu and context menu exit
Adds blade menu access through long right-click.
Adds right click as a way to exit the context menu without selecting anything.
Diffstat (limited to 'system')
-rw-r--r-- | system/keymaps/mouse.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/keymaps/mouse.xml b/system/keymaps/mouse.xml index b4edcd482d..85b184d769 100644 --- a/system/keymaps/mouse.xml +++ b/system/keymaps/mouse.xml @@ -34,6 +34,7 @@ <middleclick>middleclick</middleclick> <doubleclick id="0">doubleclick</doubleclick> <longclick id="0">contextmenu</longclick> + <longclick id="2">Menu</longclick> <!-- access to the blade menu via long right-click --> <wheeldown>wheeldown</wheeldown> <wheelup>wheelup</wheelup> <mousedrag>mousedrag</mousedrag> @@ -58,4 +59,9 @@ <rightclick>Info</rightclick> </mouse> </FullscreenGame> + <contextmenu> <!-- Give a way out of the context menu without actually having to select something. --> + <mouse> + <rightclick>back</rightclick> + </mouse> + </contextmenu> </keymap> |