Re: winex11.drv: Transmit WM_DEADCHAR messages to applications
18 Apr
2013
18 Apr
'13
5:30 p.m.
Simon Lipp <sloonz(a)gmail.com> writes:
@@ -389,6 +389,10 @@ static int process_events( Display *display, Bool (*filter)(Display*, XEvent*,XP count++; if (XFilterEvent( &event, None )) { + KeySym keysym = 0; + XLookupString(&event.xkey, NULL, 0, &keysym, NULL); + BOOL is_dead = (keysym >= XK_dead_grave && keysym <=XK_dead_semivoiced_sound);
You can't assume that you have a key event here. -- Alexandre Julliard julliard(a)winehq.org
4624
Age (days ago)
4624
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard