diff options
author | corvid <devnull@localhost> | 2015-05-09 07:10:21 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2015-05-09 07:10:21 +0000 |
commit | c76f42cba86461b0ae9a622f7f9b22a1127c2436 (patch) | |
tree | fcbc02cc39585931467caa3b879a2efd132dc245 /src/keys.cc | |
parent | fd3df37d0596e4d082d9d821179119d12808dfee (diff) |
keys: add Menu key
Now have a computer with windows keys :( and, at least for me, the
one that looks like a menu is apparently "Menu" in xev. (Although
some FLTK documentation and other stuff on the web suggests that
this used to [or maybe still does for some people] cause Super_R (xev),
which would then turn into FL_Meta_R in FLTK.)
Diffstat (limited to 'src/keys.cc')
-rw-r--r-- | src/keys.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/keys.cc b/src/keys.cc index 27b275a3..44f6acd9 100644 --- a/src/keys.cc +++ b/src/keys.cc @@ -59,6 +59,7 @@ static const Mapping_t keyNames[] = { { "Home", FL_Home }, { "Insert", FL_Insert }, { "Left", FL_Left }, + { "Menu", FL_Menu }, { "PageDown", FL_Page_Down }, { "PageUp", FL_Page_Up }, { "Print", FL_Print }, |