From d71497b0ba1ff5d66802fc77ea149a65f86058e0 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Fri, 17 Jun 2011 14:01:13 -0500 Subject: [PATCH 5/5] winex11.drv: Process keyboard events when QS_HOTKEY is specified. --- dlls/winex11.drv/event.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/winex11.drv/event.c b/dlls/winex11.drv/event.c index 419ad0f..00915cf 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; -- 1.7.2.5