34 self.setupUi(self) |
34 self.setupUi(self) |
35 |
35 |
36 self.__project = project |
36 self.__project = project |
37 |
37 |
38 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
38 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
|
39 |
|
40 msh = self.minimumSizeHint() |
|
41 self.resize(max(self.width(), msh.width()), msh.height()) |
39 |
42 |
40 @pyqtSlot(str) |
43 @pyqtSlot(str) |
41 def on_fixturesEdit_textChanged(self, txt): |
44 def on_fixturesEdit_textChanged(self, txt): |
42 """ |
45 """ |
43 Private slot to handle a change of the fixtures text. |
46 Private slot to handle a change of the fixtures text. |