Skip to content

Commit

Permalink
fix: setChecked function was not receiving the right data type
Browse files Browse the repository at this point in the history
  • Loading branch information
KernAttila committed Mar 28, 2023
1 parent 45c50a1 commit b5d21c9
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 @@ -194,7 +194,7 @@ def __init__(
if self.multiselect:
self.toolButton.setText(self.emptyText)
else:
self.setChecked(options[0])
self.setChecked([options[0]])
self.setupUi()
self.setupConnections()

Expand Down

0 comments on commit b5d21c9

Please sign in to comment.