From 656586d9fc0269d564bf0f2645efc10b72b8ca48 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 10 Mar 2014 09:07:36 +0100 Subject: [PATCH] Unblock some more internal qt events while doing advanced f&r. This fixes #9009 and some remaining drawing problems for me. --- src/frontends/qt4/GuiApplication.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/frontends/qt4/GuiApplication.cpp b/src/frontends/qt4/GuiApplication.cpp index 48320a4e06..1ccce972a1 100644 --- a/src/frontends/qt4/GuiApplication.cpp +++ b/src/frontends/qt4/GuiApplication.cpp @@ -854,6 +854,13 @@ public: case QEvent::UpdateRequest: case QEvent::CursorChange: case QEvent::ActionChanged: + case QEvent::EnabledChange: + case QEvent::SockAct: + case QEvent::Timer: + case QEvent::Paint: + case QEvent::ToolTipChange: + case QEvent::LayoutRequest: + case QEvent::MetaCall: return QObject::eventFilter(obj, event); default: // FIXME Blocking all these events is a bad idea. -- 2.39.5