winex11.drv: Process keyboard events when QS_HOTKEY is specified.

This commit is contained in:
Vincent Povirk 2011-06-17 14:01:13 -05:00 committed by Alexandre Julliard
parent b85dbc9c03
commit 7a21d06295
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ static Bool filter_event( Display *display, XEvent *event, char *arg )
case KeyRelease:
case KeymapNotify:
case MappingNotify:
return (mask & QS_KEY) != 0;
return (mask & (QS_KEY|QS_HOTKEY)) != 0;
case ButtonPress:
case ButtonRelease:
return (mask & QS_MOUSEBUTTON) != 0;