diff options
author | wm4 <wm4@mplayer2.org> | 2012-01-13 10:09:40 +0100 |
---|---|---|
committer | Uoti Urpala <uau@mplayer2.org> | 2012-03-25 22:30:37 +0300 |
commit | f561c19fe1d16e56c9143043f51fc0cc42ac0e4f (patch) | |
tree | d276b4ea5b8e30d4cb5c2028ab01712146e94f2a /libvo | |
parent | 7f6dae08e11fa90f7c8cb170daaf7ad23812f66d (diff) | |
download | mpv-f561c19fe1d16e56c9143043f51fc0cc42ac0e4f.tar.bz2 mpv-f561c19fe1d16e56c9143043f51fc0cc42ac0e4f.tar.xz |
x11: input: add print and menu keys
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/x11_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c index 7030be9d8b..9f19910234 100644 --- a/libvo/x11_common.c +++ b/libvo/x11_common.c @@ -542,6 +542,7 @@ static const struct mp_keymap keymap[] = { // special keys {wsPause, KEY_PAUSE}, {wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS}, {wsTab, KEY_TAB}, {wsEnter, KEY_ENTER}, + {XK_Menu, KEY_MENU}, {XK_Print, KEY_PRINT}, // cursor keys {wsLeft, KEY_LEFT}, {wsRight, KEY_RIGHT}, {wsUp, KEY_UP}, {wsDown, KEY_DOWN}, |