From 4966802f14db9f1b6c4170766225c70bfa00d3b3 Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Tue, 24 Feb 2026 19:47:20 +0100 Subject: [PATCH] Fix first action of paused macros being executed --- lib/macro/macro.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/macro/macro.cpp b/lib/macro/macro.cpp index 439989e0..91a526b1 100644 --- a/lib/macro/macro.cpp +++ b/lib/macro/macro.cpp @@ -380,6 +380,10 @@ bool Macro::RunActionsHelper( const std::deque> &actionsToRun, bool ignorePause) { + if (_paused && !ignorePause) { + return true; + } + // Create copy of action list as elements might be removed, inserted, or // reordered while actions are currently being executed. auto actions = actionsToRun;