mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-05-12 15:14:45 -05:00
Don't highlight paused macro in macro list
This commit is contained in:
parent
265daebdf3
commit
ccb5c8ba2c
|
|
@ -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