3364:5dafcc891579 | 3366:6084bb3c3911 |
---|---|
22 | 22 |
23 @param parent reference to the parent widget (QWidget) | 23 @param parent reference to the parent widget (QWidget) |
24 """ | 24 """ |
25 super().__init__(parent) | 25 super().__init__(parent) |
26 self.setupUi(self) | 26 self.setupUi(self) |
27 | |
28 msh = self.minimumSizeHint() | |
29 self.resize(max(self.width(), msh.width()), msh.height()) | |
27 | 30 |
28 def getData(self): | 31 def getData(self): |
29 """ | 32 """ |
30 Public method to get the selected options. | 33 Public method to get the selected options. |
31 | 34 |