Skip to content

Commit

Permalink
fix: replace old variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
KernAttila committed Mar 31, 2023
1 parent f5f3091 commit cd60b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuesubmit/cuesubmit/ui/Widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def setCheckedFromText(self, actionsAstext):
@type actionNames: str
@param actionNames: list of action names to set to checked separated by a comma and a space
"""
if ', ' in text and self.multiselect:
if ', ' in actionsAstext and self.multiselect:
self.setChecked(actionsAstext.split(', '))
else:
self.setChecked([actionsAstext])
Expand Down

0 comments on commit cd60b6e

Please sign in to comment.