24 |
24 |
25 @param vcs reference to the version control object |
25 @param vcs reference to the version control object |
26 @param project reference to the project object |
26 @param project reference to the project object |
27 @param parent parent widget (QWidget) |
27 @param parent parent widget (QWidget) |
28 """ |
28 """ |
29 super(GitOptionsDialog, self).__init__(parent) |
29 super().__init__(parent) |
30 self.setupUi(self) |
30 self.setupUi(self) |
31 |
31 |
32 msh = self.minimumSizeHint() |
32 msh = self.minimumSizeHint() |
33 self.resize(max(self.width(), msh.width()), msh.height()) |
33 self.resize(max(self.width(), msh.width()), msh.height()) |
34 |
34 |