33 |
33 |
34 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
34 self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) |
35 self.okButton.setEnabled(False) |
35 self.okButton.setEnabled(False) |
36 |
36 |
37 self.tagCombo.clear() |
37 self.tagCombo.clear() |
38 self.tagCombo.addItems(taglist) |
38 self.tagCombo.addItems(sorted(taglist)) |
39 |
39 |
40 @pyqtSlot(str) |
40 @pyqtSlot(str) |
41 def on_tagCombo_editTextChanged(self, text): |
41 def on_tagCombo_editTextChanged(self, text): |
42 """ |
42 """ |
43 Private method used to enable/disable the OK-button. |
43 Private method used to enable/disable the OK-button. |