Adaptions for "else" support

* Fix "on change" option always being highlighted
* Fix "run macro" button performing actions based on condition state
* Fix "run" option of macro action performing action based on condition
  stated of selected macro
This commit is contained in:
WarmUpTill
2023-09-10 22:51:30 +02:00
committed by WarmUpTill
parent 81f669e226
commit fffb6c5f29
4 changed files with 16 additions and 19 deletions

View File

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