From 5d40943854a0c336f8b4face5bf5a90081a2e8b5 Mon Sep 17 00:00:00 2001 From: zeljko Date: Sun, 12 Feb 2017 12:30:15 +0000 Subject: [PATCH] Qt: use QEventLoopAllEvents instead of QEventLoopExcludeUserInputEvents after TQtMessageBox finished. git-svn-id: trunk@54139 - --- lcl/interfaces/qt/qtwidgets.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lcl/interfaces/qt/qtwidgets.pas b/lcl/interfaces/qt/qtwidgets.pas index f98bd2a97c..ce7db1ad93 100644 --- a/lcl/interfaces/qt/qtwidgets.pas +++ b/lcl/interfaces/qt/qtwidgets.pas @@ -19841,7 +19841,7 @@ begin {$IFDEF HASX11} // make qt interface snappy. if Assigned(Application) and not Application.Terminated then - QCoreApplication_processEvents(QEventLoopExcludeUserInputEvents); + QCoreApplication_processEvents(QEventLoopAllEvents); {$ENDIF} end;