From 8b4c3c91153da641ad2180d63632f82f565cf661 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Sat, 1 Jun 2019 00:33:19 +0200 Subject: [PATCH] fix MacOS modifier naming --- src/common/KeyMap.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/KeyMap.cxx b/src/common/KeyMap.cxx index 11b552e93..4be7280f2 100644 --- a/src/common/KeyMap.cxx +++ b/src/common/KeyMap.cxx @@ -92,9 +92,9 @@ bool KeyMap::check(const int mode, const int key, const int mod) const string KeyMap::getDesc(const Mapping& mapping) const { ostringstream buf; -#ifdef BSPF_MACOS - string control = "Cmd"; - string alt = "Ctrl"; +#ifdef BSPF_MACOS || defined(MACOS_KEYS) + string control = "Ctrl"; + string alt = "Cmd"; int ALT = KBDM_GUI; int LALT = KBDM_LGUI; int RALT = KBDM_RGUI;