Skip to content

Commit

Permalink
Fixed issue with dead key press/release events being filtered out.
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 10, 2013
1 parent 0d39d09 commit 9228c84
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions src/video/x11/SDL_x11events.c
Expand Up @@ -280,19 +280,39 @@ X11_DispatchEvent(_THIS)
Display *display = videodata->display;
SDL_WindowData *data;
XEvent xevent;
int i;
int orig_event_type;
KeyCode orig_keycode;
XClientMessageEvent m;
int i;

SDL_zero(xevent); /* valgrind fix. --ryan. */
X11_XNextEvent(display, &xevent);

/* filter events catchs XIM events and sends them to the correct
handler */
/* Save the original keycode for dead keys, which are filtered out by
the XFilterEvent() call below.
*/
orig_event_type = xevent.type;
if (orig_event_type == KeyPress || orig_event_type == KeyRelease) {
orig_keycode = xevent.xkey.keycode;
} else {
orig_keycode = 0;
}

/* filter events catchs XIM events and sends them to the correct handler */
if (X11_XFilterEvent(&xevent, None) == True) {
#if 0
printf("Filtered event type = %d display = %d window = %d\n",
xevent.type, xevent.xany.display, xevent.xany.window);
#endif
if (orig_keycode) {
/* Make sure dead key press/release events are sent */
SDL_Scancode scancode = videodata->key_layout[orig_keycode];
if (orig_event_type == KeyPress) {
SDL_SendKeyboardKey(SDL_PRESSED, scancode);
} else {
SDL_SendKeyboardKey(SDL_RELEASED, scancode);
}
}
return;
}

Expand Down

0 comments on commit 9228c84

Please sign in to comment.