Browse Source

Platform: rename GlfwApplication::InputEvent::Modifier::AltGr to Super.

It's not AltGr, it's the Windows (or ⌘) key.
pull/159/merge
Vladimír Vondruš 10 years ago
parent
commit
140f378739
  1. 2
      src/Magnum/Platform/GlfwApplication.h

2
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/⌘) */
};
/**

Loading…
Cancel
Save