You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rokups opened this issue
Jan 13, 2020
· 2 comments
Assignees
Labels
bugBug reports and bugfix pull requestsinputKeyboard, joystick or mouseverifiedReproduced or otherwise verified bugsWindowsWin32 specific (not Cygwin or WSL)
Windows clipboard (Win+v) sends windows messages for CTRL+v with no scancode set. GLFW still catches CTRL press, but only because it has special case handling based on keycode. V press is lost because scancode is used to translate key press to gflw key.
The text was updated successfully, but these errors were encountered:
Some synthetic key messages come with a scancode of zero, causing them
to be translate to GLFW_KEY_UNKNOWN. This fills in the missing scancode
by translating the provided virtual key.
Rather than further complicate a single-use function, its body is merged
into the key message handler.
Fixes#1623.
Some synthetic key messages come with a scancode of zero, causing them
to be translate to GLFW_KEY_UNKNOWN. This fills in the missing scancode
by translating the provided virtual key.
Rather than further complicate a single-use function, its body is merged
into the key message handler.
Fixes#1623.
Some synthetic key messages come with a scancode of zero, causing them
to be translate to GLFW_KEY_UNKNOWN. This fills in the missing scancode
by translating the provided virtual key.
Rather than further complicate a single-use function, its body is merged
into the key message handler.
Fixes#1623.
(cherry picked from commit 789a2bc)
Some synthetic key messages come with a scancode of zero, causing them
to be translate to GLFW_KEY_UNKNOWN. This fills in the missing scancode
by translating the provided virtual key.
Rather than further complicate a single-use function, its body is merged
into the key message handler.
Fixesglfw#1623.
bugBug reports and bugfix pull requestsinputKeyboard, joystick or mouseverifiedReproduced or otherwise verified bugsWindowsWin32 specific (not Cygwin or WSL)
Windows clipboard (Win+v) sends windows messages for CTRL+v with no scancode set. GLFW still catches CTRL press, but only because it has special case handling based on keycode. V press is lost because scancode is used to translate key press to gflw key.
The text was updated successfully, but these errors were encountered: