fix MacOS modifier naming

This commit is contained in:
thrust26 2019-06-01 00:33:19 +02:00
parent 0724e69c4c
commit f7c529d179
1 changed files with 3 additions and 3 deletions

View File

@ -92,9 +92,9 @@ bool KeyMap::check(const int mode, const int key, const int mod) const
string KeyMap::getDesc(const Mapping& mapping) const string KeyMap::getDesc(const Mapping& mapping) const
{ {
ostringstream buf; ostringstream buf;
#ifdef BSPF_MACOS #ifdef BSPF_MACOS || defined(MACOS_KEYS)
string control = "Cmd"; string control = "Ctrl";
string alt = "Ctrl"; string alt = "Cmd";
int ALT = KBDM_GUI; int ALT = KBDM_GUI;
int LALT = KBDM_LGUI; int LALT = KBDM_LGUI;
int RALT = KBDM_RGUI; int RALT = KBDM_RGUI;