Skip to content

Commit

Permalink
feat: add signals, getter and setter attributes on `CueCommandW…
Browse files Browse the repository at this point in the history
…idget` used in `DynamicSettingsWidget`
  • Loading branch information
KernAttila committed Mar 28, 2023
1 parent 3bbdf53 commit 20a258a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cuesubmit/cuesubmit/ui/Command.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ def __init__(self, parent=None):
super(CueCommandWidget, self).__init__(parent)
self.commandTextBox = CueCommandTextBox(None)
self.contentLayout.addWidget(self.commandTextBox)
self.signals = [self.textChanged]
self.getter = self.text
self.setter = self.setText
self.setupConnections()

def setupConnections(self):
Expand Down

0 comments on commit 20a258a

Please sign in to comment.