Sat, 16 Jan 2010 14:14:45 +0000
Fixed a logical error.
Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py | file | annotate | diff | comparison | revisions |
--- a/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py Sat Jan 16 14:07:07 2010 +0000 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py Sat Jan 16 14:14:45 2010 +0000 @@ -41,13 +41,14 @@ if not standardLayout: self.TagActionGroup.setEnabled(False) + @pyqtSlot(str) def on_tagCombo_editTextChanged(self, text): """ Private method used to enable/disable the OK-button. @param text tag name entered in the combo (string) """ - self.okButton.setDisabled(text != "") + self.okButton.setDisabled(text == "") def getParameters(self): """