Dario Manesku hace 10 años
padre
commit
205fa041e9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      examples/common/entry/entry_osx.mm

+ 1 - 1
examples/common/entry/entry_osx.mm

@@ -312,7 +312,7 @@ namespace entry
 							{
 								enum { ShiftMask = Modifier::LeftShift|Modifier::RightShift };
 								const bool nonShiftModifiers = (0 != (modifiers&(~ShiftMask) ) );
-								const bool isCharPressed = (Key::Key0 <= key && key <= Key::KeyZ) || (Key::Esc  <= key && key <= Key::Minus) ;
+								const bool isCharPressed = (Key::Key0 <= key && key <= Key::KeyZ) || (Key::Esc <= key && key <= Key::Minus);
 								const bool isText = isCharPressed && !nonShiftModifiers;
 								if (isText)
 								{