Skip to content

Commit

Permalink
Fixed glfw Backend Missing BaseKey Maps (#213)
Browse files Browse the repository at this point in the history
* Update mouse_wheel_h for imgui integration

* Fixed glfw backend missing BaseKey maps
  • Loading branch information
fangjunzhou authored Jan 3, 2025
1 parent 1f3f07b commit 7827eb7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions moderngl_window/context/glfw/keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ class Keys(BaseKeys):
RIGHT = glfw.KEY_RIGHT
UP = glfw.KEY_UP
DOWN = glfw.KEY_DOWN
LEFT_SHIFT = glfw.KEY_LEFT_SHIFT
RIGHT_SHIFT = glfw.KEY_RIGHT_SHIFT
LEFT_CTRL = glfw.KEY_LEFT_CONTROL

TAB = glfw.KEY_TAB
COMMA = glfw.KEY_COMMA
Expand Down

0 comments on commit 7827eb7

Please sign in to comment.