mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-05-09 04:32:13 -05:00
Don't highlight paused macro in macro list
This commit is contained in:
parent
5d3c83c292
commit
312fe1d648
|
|
@ -290,7 +290,7 @@ bool Macro::CheckConditions(bool ignorePause)
|
|||
|
||||
const bool hasActionsToExecute = _matched ? (_actions.size() > 0)
|
||||
: (_elseActions.size() > 0);
|
||||
if (!_actionModeMatch && hasActionsToExecute) {
|
||||
if (!_actionModeMatch && hasActionsToExecute && !_paused) {
|
||||
_lastActionRunModePreventTime =
|
||||
std::chrono::high_resolution_clock::now();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user