Commit 7a21d062 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

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

parent b85dbc9c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment