67 Utilities.toNativeSeparators(self.__initPaths[0])) |
67 Utilities.toNativeSeparators(self.__initPaths[0])) |
68 |
68 |
69 self.resize(self.width(), self.minimumSizeHint().height()) |
69 self.resize(self.width(), self.minimumSizeHint().height()) |
70 |
70 |
71 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
71 self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) |
|
72 |
|
73 msh = self.minimumSizeHint() |
|
74 self.resize(max(self.width(), msh.width()), msh.height()) |
72 |
75 |
73 @pyqtSlot(str) |
76 @pyqtSlot(str) |
74 def on_vcsProjectDirEdit_textChanged(self, txt): |
77 def on_vcsProjectDirEdit_textChanged(self, txt): |
75 """ |
78 """ |
76 Private slot to handle a change of the project directory. |
79 Private slot to handle a change of the project directory. |