Fix typo causing actions to be run multiple times with combine
This commit is contained in:
parent
c0b73986cb
commit
af7a104f5b
1 changed files with 1 additions and 1 deletions
|
|
@ -1141,7 +1141,7 @@ def combine(self, action_definition: str, window_for_dispatch: Optional[Window]
|
|||
traceback.print_exc()
|
||||
self.show_error('Failed to parse action', f'{action_definition}\n{e}')
|
||||
return True
|
||||
for action in actions:
|
||||
if actions:
|
||||
try:
|
||||
if self.dispatch_action(actions[0], window_for_dispatch, dispatch_type):
|
||||
consumed = True
|
||||
|
|
|
|||
Loading…
Reference in a new issue