From 4a9ab53231e03d464c097a652f8f1decd789c57a Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Thu, 16 Oct 2014 00:19:11 -0700 Subject: [PATCH] Don't block while forcing a draw --- src/platform/qt/Display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/Display.cpp b/src/platform/qt/Display.cpp index 7664c8748..af7cae183 100644 --- a/src/platform/qt/Display.cpp +++ b/src/platform/qt/Display.cpp @@ -58,7 +58,7 @@ void Display::stopDrawing() { void Display::forceDraw() { if (m_drawThread) { - QMetaObject::invokeMethod(m_painter, "forceDraw", Qt::BlockingQueuedConnection); + QMetaObject::invokeMethod(m_painter, "forceDraw", Qt::QueuedConnection); } }