mirror of
https://github.com/glfw/glfw
synced 2026-09-26 16:18:21 +03:00
Merge 0b0a45e077 into 92dcf4ce74
This commit is contained in:
commit
ca40a9c862
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue