From c69c8509fd416f529a2133f485aba3ed915dcf9f Mon Sep 17 00:00:00 2001 From: MinyazevR Date: Tue, 16 Sep 2025 13:19:47 +0300 Subject: [PATCH] Proccess UI events before the next block starts executing --- qrutils/interpreter/block.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qrutils/interpreter/block.cpp b/qrutils/interpreter/block.cpp index fad1248e1c..93460c738f 100644 --- a/qrutils/interpreter/block.cpp +++ b/qrutils/interpreter/block.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ #include - +#include #include #include #include @@ -110,7 +110,7 @@ void Block::interpret(Thread *thread) if (mState == failed) { return; } - + QCoreApplication::processEvents(); mState = running; mThread = thread; if (initNextBlocks()) {