diff --git a/cuesubmit/cuesubmit/ui/Command.py b/cuesubmit/cuesubmit/ui/Command.py index 548e2a836..ec43ebfdc 100644 --- a/cuesubmit/cuesubmit/ui/Command.py +++ b/cuesubmit/cuesubmit/ui/Command.py @@ -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):