mirror of
https://github.com/glfw/glfw.git
synced 2025-01-19 14:32:49 +00:00
Cocoa: Fix regression in private use area check
This fixes a regression introduced byad9eb768c9
. (cherry picked from commite47832ffcf
)
This commit is contained in:
parent
9cae95faa3
commit
e6646c8508
@ -744,7 +744,7 @@ static const NSRange kEmptyRange = { NSNotFound, 0 };
|
|||||||
range:range
|
range:range
|
||||||
remainingRange:&range])
|
remainingRange:&range])
|
||||||
{
|
{
|
||||||
if ((codepoint & 0xff00) == 0xf700)
|
if (codepoint >= 0xf700 && codepoint <= 0xf7ff)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
_glfwInputChar(window, codepoint, mods, plain);
|
_glfwInputChar(window, codepoint, mods, plain);
|
||||||
|
Loading…
Reference in New Issue
Block a user