mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
Fix else-actions being executed for paused macros
This commit is contained in:
parent
b199b8bcff
commit
8b9f3064ba
|
|
@ -231,7 +231,7 @@ bool Macro::ExecutedSince(
|
|||
bool Macro::ShouldRunActions() const
|
||||
{
|
||||
const bool hasActionsToExecute =
|
||||
(_matched || _elseActions.size() > 0) &&
|
||||
!_paused && (_matched || _elseActions.size() > 0) &&
|
||||
(!_performActionsOnChange || _conditionSateChanged);
|
||||
|
||||
if (VerboseLoggingEnabled() && _performActionsOnChange &&
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user