Fix freeze when stopping waiting macro via "Run macro" button

This commit is contained in:
WarmUpTill
2026-06-13 23:21:31 +02:00
committed by WarmUpTill
parent c07c00325f
commit 6c90f517e4
3 changed files with 8 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ void MacroRunButton::Pressed()
const bool abortMacro = DisplayMessage(
err.arg(QString::fromStdString(macro->Name())), true);
if (abortMacro) {
macro->Stop();
macro->SignalStop();
}
}