42 self.tagCombo.setEditText(reposURL) |
42 self.tagCombo.setEditText(reposURL) |
43 |
43 |
44 if not standardLayout: |
44 if not standardLayout: |
45 self.TagActionGroup.setEnabled(False) |
45 self.TagActionGroup.setEnabled(False) |
46 |
46 |
|
47 msh = self.minimumSizeHint() |
|
48 self.resize(max(self.width(), msh.width()), msh.height()) |
|
49 |
47 @pyqtSlot(str) |
50 @pyqtSlot(str) |
48 def on_tagCombo_editTextChanged(self, text): |
51 def on_tagCombo_editTextChanged(self, text): |
49 """ |
52 """ |
50 Private method used to enable/disable the OK-button. |
53 Private method used to enable/disable the OK-button. |
51 |
54 |