Skip to content

Commit

Permalink
Merge branch 'hotfix/0.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sisoe24 committed Oct 4, 2023
2 parents 8d91537 + 5d3c04f commit 71d018e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nukeserversocket/controllers/nuke_script_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def _find_run_button(self): # type: (str) -> QPushButton | None
"""
# TODO: if fail tooltip search for list position
for button in self._find_script_editor().findChildren(QPushButton):
if button.toolTip() == 'Run the current script':
if button.toolTip().startswith('Run the current script'):
return button

# XXX: can the button not be found?
Expand Down

0 comments on commit 71d018e

Please sign in to comment.