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().__init__(parent) |
29 super().__init__(parent) |
30 self.setupUi(self) |
30 self.setupUi(self) |
|
31 |
|
32 msh = self.minimumSizeHint() |
|
33 self.resize(max(self.width(), msh.width()), msh.height()) |
31 |
34 |
32 def getData(self): |
35 def getData(self): |
33 """ |
36 """ |
34 Public slot to retrieve the data entered into the dialog. |
37 Public slot to retrieve the data entered into the dialog. |
35 |
38 |