Browse Source

Platform: oops.

pull/162/head
Vladimír Vondruš 10 years ago
parent
commit
0c52d79707
  1. 2
      src/Magnum/Platform/GlfwApplication.cpp

2
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;
}

Loading…
Cancel
Save