From 140f378739f9feeb946a8831c74278463820d519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 26 Jun 2016 11:58:20 +0200 Subject: [PATCH] Platform: rename GlfwApplication::InputEvent::Modifier::AltGr to Super. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's not AltGr, it's the Windows (or ⌘) key. --- src/Magnum/Platform/GlfwApplication.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index c51410058..543331151 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -503,7 +503,7 @@ class GlfwApplication::InputEvent { Shift = GLFW_MOD_SHIFT, /**< Shift */ Ctrl = GLFW_MOD_CONTROL, /**< Ctrl */ Alt = GLFW_MOD_ALT, /**< Alt */ - AltGr = GLFW_MOD_SUPER /**< AltGr */ + Super = GLFW_MOD_SUPER /**< Super key (Windows/⌘) */ }; /**