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