From 7a21d06295269e19139abf50a50cdc857fdb2078 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Fri, 17 Jun 2011 14:01:13 -0500 Subject: [PATCH] winex11.drv: Process keyboard events when QS_HOTKEY is specified. --- dlls/winex11.drv/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winex11.drv/event.c b/dlls/winex11.drv/event.c index 419ad0f9b07..00915cfa7e4 100644 --- a/dlls/winex11.drv/event.c +++ b/dlls/winex11.drv/event.c @@ -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; -- 2.11.4.GIT