| 462 | } |
| 463 | |
| 464 | void AdvSceneSwitcher::on_runMacroInParallel_stateChanged(int value) const |
| 465 | { |
| 466 | auto macro = GetSelectedMacro(); |
| 467 | if (!macro) { |
| 468 | return; |
| 469 | } |
| 470 | auto lock = LockContext(); |
| 471 | macro->SetRunInParallel(value); |
| 472 | } |
| 473 | |
| 474 | void AdvSceneSwitcher::on_actionTriggerMode_currentIndexChanged(int index) const |
| 475 | { |
nothing calls this directly
no test coverage detected