|
|
|
@ -221,7 +221,7 @@ auto GlfwApplication::KeyEvent::getCurrentGlfwModifiers(GLFWwindow* window) -> M |
|
|
|
if(glfwGetKey(window, Int(Key::LeftCtrl)) || glfwGetKey(window, Int(Key::RightCtrl))) |
|
|
|
if(glfwGetKey(window, Int(Key::LeftCtrl)) || glfwGetKey(window, Int(Key::RightCtrl))) |
|
|
|
mods |= Modifier::Ctrl; |
|
|
|
mods |= Modifier::Ctrl; |
|
|
|
if(glfwGetKey(window, Int(Key::RightSuper))) |
|
|
|
if(glfwGetKey(window, Int(Key::RightSuper))) |
|
|
|
mods |= Modifier::AltGr; |
|
|
|
mods |= Modifier::Super; |
|
|
|
|
|
|
|
|
|
|
|
return mods; |
|
|
|
return mods; |
|
|
|
} |
|
|
|
} |
|
|
|
|