]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp
Better wxFile support, warning fixes and minor source cleaning.
[wxWidgets.git] / src / stc / stc.cpp
index f534906177dad0be62b4d5de0003ff3049f25474..ec1f9949d065b26d7f66d30f0f2146fb41908372 100644 (file)
@@ -2782,9 +2782,9 @@ void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
         // be a function key or etc., the platforms appear to always give us a
         // small value in this case) then fallback to the ascii key code but
         // don't do anything for function keys or etc.
-        if (key <= 255) {
+        if (key <= 127) {
             key = evt.GetKeyCode();
-            keyOk = (key <= 255);
+            keyOk = (key <= 127);
         }
         if (keyOk) {
             m_swx->DoAddChar(key);