diff --git a/src/Magnum/Platform/GlfwApplication.cpp b/src/Magnum/Platform/GlfwApplication.cpp index bac69aa43..6b40eda54 100644 --- a/src/Magnum/Platform/GlfwApplication.cpp +++ b/src/Magnum/Platform/GlfwApplication.cpp @@ -221,7 +221,7 @@ auto GlfwApplication::KeyEvent::getCurrentGlfwModifiers(GLFWwindow* window) -> M if(glfwGetKey(window, Int(Key::LeftCtrl)) || glfwGetKey(window, Int(Key::RightCtrl))) mods |= Modifier::Ctrl; if(glfwGetKey(window, Int(Key::RightSuper))) - mods |= Modifier::AltGr; + mods |= Modifier::Super; return mods; }