42 self.__projectPath = projectPath |
42 self.__projectPath = projectPath |
43 |
43 |
44 self.typeCombo.addItem("Mercurial", "hg") |
44 self.typeCombo.addItem("Mercurial", "hg") |
45 self.typeCombo.addItem("GIT", "git") |
45 self.typeCombo.addItem("GIT", "git") |
46 self.typeCombo.addItem("Subversion", "svn") |
46 self.typeCombo.addItem("Subversion", "svn") |
|
47 |
|
48 msh = self.minimumSizeHint() |
|
49 self.resize(max(self.width(), msh.width()), msh.height()) |
47 |
50 |
48 def __updateOk(self): |
51 def __updateOk(self): |
49 """ |
52 """ |
50 Private slot to update the state of the OK button. |
53 Private slot to update the state of the OK button. |
51 """ |
54 """ |