Run macros even if they are paused when pressing "Run Macro"

This commit is contained in:
WarmUpTill
2022-01-05 04:04:10 +01:00
committed by WarmUpTill
parent 2c1b97e5cd
commit d31ae77176
3 changed files with 14 additions and 12 deletions

View File

@@ -180,7 +180,7 @@ void AdvSceneSwitcher::on_runMacro_clicked()
return;
}
bool ret = macro->PerformAction(true);
bool ret = macro->PerformAction(true, true);
if (!ret) {
QString err =
obs_module_text("AdvSceneSwitcher.macroTab.runFail");