8217:385f60c94548 | 8218:7c09585bd960 |
---|---|
20 """ | 20 """ |
21 Constructor | 21 Constructor |
22 | 22 |
23 @param parent reference to the parent widget (QWidget) | 23 @param parent reference to the parent widget (QWidget) |
24 """ | 24 """ |
25 super(SortOptionsDialog, self).__init__(parent) | 25 super().__init__(parent) |
26 self.setupUi(self) | 26 self.setupUi(self) |
27 | 27 |
28 msh = self.minimumSizeHint() | 28 msh = self.minimumSizeHint() |
29 self.resize(max(self.width(), msh.width()), msh.height()) | 29 self.resize(max(self.width(), msh.width()), msh.height()) |
30 | 30 |