diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2017-03-13 22:00:23 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2017-03-13 22:17:42 +0100 |
commit | abf6242128394aa2374f3882252dfc84d4499c33 (patch) | |
tree | d49003d2c7f49f0eee4a4cb47d0917f9e2ca2555 /nx-X11/programs/Xserver/hw/nxagent/Keystroke.h | |
parent | aadcac452379ae0da59f1a16c60189a69ef822d6 (diff) | |
download | nx-libs-abf6242128394aa2374f3882252dfc84d4499c33.tar.gz nx-libs-abf6242128394aa2374f3882252dfc84d4499c33.tar.bz2 nx-libs-abf6242128394aa2374f3882252dfc84d4499c33.zip |
Keystroke.c: add new keystroke to reread keystroke config
Default is ctrl-alt-k
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Keystroke.h')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Keystroke.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h index 56c977418..48ed65b35 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h +++ b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h @@ -64,12 +64,14 @@ enum nxagentSpecialKeystroke { KEYSTROKE_VIEWPORT_MOVE_RIGHT = 19, KEYSTROKE_VIEWPORT_MOVE_DOWN = 20, - KEYSTROKE_NOTHING = 21, + KEYSTROKE_REREAD_KEYSTROKES = 21, + + KEYSTROKE_NOTHING = 22, /* insert more here, increment KEYSTROKE_MAX accordingly. * then update string translation below */ - KEYSTROKE_MAX = 22, + KEYSTROKE_MAX = 23, }; struct nxagentSpecialKeystrokeMap { |