27 self.setupUi(self) |
27 self.setupUi(self) |
28 |
28 |
29 self.currUrlLabel.setText(currUrl) |
29 self.currUrlLabel.setText(currUrl) |
30 self.newUrlEdit.setText(currUrl) |
30 self.newUrlEdit.setText(currUrl) |
31 |
31 |
|
32 msh = self.minimumSizeHint() |
|
33 self.resize(max(self.width(), msh.width()), msh.height()) |
|
34 |
32 def getData(self): |
35 def getData(self): |
33 """ |
36 """ |
34 Public slot used to retrieve the data entered into the dialog. |
37 Public slot used to retrieve the data entered into the dialog. |
35 |
38 |
36 @return the new repository URL (string) and an indication, if |
39 @return the new repository URL (string) and an indication, if |