fix MacOS modifier naming, 2nd try

This commit is contained in:
thrust26 2019-06-01 00:36:11 +02:00
parent f7c529d179
commit a3350bca07
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ 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 || defined(MACOS_KEYS) #if defined(BSPF_MACOS) || defined(MACOS_KEYS)
string control = "Ctrl"; string control = "Ctrl";
string alt = "Cmd"; string alt = "Cmd";
int ALT = KBDM_GUI; int ALT = KBDM_GUI;