24 """ |
24 """ |
25 Constructor |
25 Constructor |
26 |
26 |
27 @param parent reference to the parent widget (QWidget) |
27 @param parent reference to the parent widget (QWidget) |
28 """ |
28 """ |
29 super(GitStashDataDialog, 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 |