From b3aa34964c3e51c4b1220c8256fa91ccae47ca20 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Sat, 1 Jun 2019 00:36:11 +0200 Subject: [PATCH] fix MacOS modifier naming, 2nd try --- src/common/KeyMap.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/KeyMap.cxx b/src/common/KeyMap.cxx index 4be7280f2..6bdf747e4 100644 --- a/src/common/KeyMap.cxx +++ b/src/common/KeyMap.cxx @@ -92,7 +92,7 @@ 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 || defined(MACOS_KEYS) +#if defined(BSPF_MACOS) || defined(MACOS_KEYS) string control = "Ctrl"; string alt = "Cmd"; int ALT = KBDM_GUI;