]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp.in
Trying to fix dialog close/focus_widget problem.
[wxWidgets.git] / src / stc / stc.cpp.in
index b05ddaf347dda268af6eaef5a217d488445e8f1a..991ae203ac7e32eee1c42c11047cdf267ff90d77 100644 (file)
@@ -398,7 +398,7 @@ void wxStyledTextCtrl::OnChar(wxKeyEvent& evt) {
     // alt let's skip it.
     bool ctrl = evt.ControlDown();
     bool alt  = evt.AltDown();
     // alt let's skip it.
     bool ctrl = evt.ControlDown();
     bool alt  = evt.AltDown();
-    bool skip = (ctrl || alt && ! (ctrl && alt));
+    bool skip = ((ctrl || alt) && ! (ctrl && alt));
 
     if (key <= 0xff && !iscntrl(key) && !m_lastKeyDownConsumed && !skip) {
         m_swx->DoAddChar(key);
 
     if (key <= 0xff && !iscntrl(key) && !m_lastKeyDownConsumed && !skip) {
         m_swx->DoAddChar(key);