Browse Source

Fix for a mistake in the last check-in!

tags/2021-05-28
jules 13 years ago
parent
commit
9c21813960
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_basics/native/juce_linux_Windowing.cpp

+ 1
- 1
modules/juce_gui_basics/native/juce_linux_Windowing.cpp View File

@@ -1284,7 +1284,7 @@ public:
keyCode = (int) unicodeChar;
if (keyCode < 0x20)
keyCode = XkbKeycodeToKeysym (display, 0, keyEvent->keycode, currentModifiers.isShiftDown() ? 1 : 0);
keyCode = XkbKeycodeToKeysym (display, keyEvent->keycode, 0, currentModifiers.isShiftDown() ? 1 : 0);
keyDownChange = (sym != NoSymbol) && ! updateKeyModifiersFromSym (sym, true);
}


Loading…
Cancel
Save