39 self.tagCombo.setEditText(reposURL) |
39 self.tagCombo.setEditText(reposURL) |
40 |
40 |
41 if not standardLayout: |
41 if not standardLayout: |
42 self.TagActionGroup.setEnabled(False) |
42 self.TagActionGroup.setEnabled(False) |
43 |
43 |
|
44 @pyqtSlot(str) |
44 def on_tagCombo_editTextChanged(self, text): |
45 def on_tagCombo_editTextChanged(self, text): |
45 """ |
46 """ |
46 Private method used to enable/disable the OK-button. |
47 Private method used to enable/disable the OK-button. |
47 |
48 |
48 @param text tag name entered in the combo (string) |
49 @param text tag name entered in the combo (string) |
49 """ |
50 """ |
50 self.okButton.setDisabled(text != "") |
51 self.okButton.setDisabled(text == "") |
51 |
52 |
52 def getParameters(self): |
53 def getParameters(self): |
53 """ |
54 """ |
54 Public method to retrieve the tag data. |
55 Public method to retrieve the tag data. |
55 |
56 |