diff options
author | John Stanley <jpsinthemix@verizon.net> | 2012-01-17 20:04:55 -0500 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-10 16:11:54 +0100 |
commit | 69ada23a75bb51b4efc90c6128cce22d5ee6a779 (patch) | |
tree | 30a625a16a824d3144d3ed8e737274858e508e1e /src | |
parent | 1095252559a937efcaaf012d8dfbb4e13c4fd6b5 (diff) | |
download | qt4-tools-69ada23a75bb51b4efc90c6128cce22d5ee6a779.tar.gz |
When doing mouse move compression, pass non-MotionNotify events to installed event dispatcher event filters
Change-Id: Ia71f23458b9a6bc728f3e05592f530e317ae453c
Reviewed-by: Bradley T. Hughes <bradley.hughes@nokia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qapplication_x11.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_x11.cpp b/src/gui/kernel/qapplication_x11.cpp index 256db7d4c5..4d642a9716 100644 --- a/src/gui/kernel/qapplication_x11.cpp +++ b/src/gui/kernel/qapplication_x11.cpp @@ -4234,7 +4234,10 @@ bool QETWidget::translateMouseEvent(const XEvent *event) && (nextEvent.xclient.message_type == ATOM(_QT_SCROLL_DONE) || (nextEvent.xclient.message_type == ATOM(WM_PROTOCOLS) && (Atom)nextEvent.xclient.data.l[0] == ATOM(_NET_WM_SYNC_REQUEST))))) { - qApp->x11ProcessEvent(&nextEvent); + // Pass the event through the event dispatcher filter so that applications + // which install an event filter on the dispatcher get to handle it first. + if (!QAbstractEventDispatcher::instance()->filterEvent(&nextEvent)) + qApp->x11ProcessEvent(&nextEvent); continue; } else if (nextEvent.type != MotionNotify || nextEvent.xmotion.window != event->xmotion.window || |