mirror of
https://github.com/glfw/glfw.git
synced 2025-07-12 10:40:04 +00:00
Merge 0b0a45e077
into 506c11ba43
This commit is contained in:
commit
3fcdf90d15
@ -312,7 +312,7 @@ void _glfwInputChar(_GLFWwindow* window, uint32_t codepoint, int mods, GLFWbool
|
||||
assert(mods == (mods & GLFW_MOD_MASK));
|
||||
assert(plain == GLFW_TRUE || plain == GLFW_FALSE);
|
||||
|
||||
if (codepoint < 32 || (codepoint > 126 && codepoint < 160))
|
||||
if (codepoint > 126 && codepoint < 160)
|
||||
return;
|
||||
|
||||
if (!window->lockKeyMods)
|
||||
|
Loading…
Reference in New Issue
Block a user