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 data from the dialog. |
33 Public method to get the data from the dialog. |
31 |
34 |