Sat, 12 Apr 2014 19:43:30 +0200
Fixed a window sizing issue.
--- a/ChangeLog Mon Feb 03 18:54:19 2014 +0100 +++ b/ChangeLog Sat Apr 12 19:43:30 2014 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 1.5.1 +- bug fixes + Version 1.5.0: - extended the API to allow for plug-in extension by another plug-in
--- a/ProjectPyramid/CreateParametersDialog.py Mon Feb 03 18:54:19 2014 +0100 +++ b/ProjectPyramid/CreateParametersDialog.py Sat Apr 12 19:43:30 2014 +0200 @@ -71,6 +71,9 @@ None, self.trUtf8('Process Generation Error'), errMsg) + + msh = self.minimumSizeHint() + self.resize(max(self.width(), msh.width()), msh.height()) @pyqtSlot(str) def on_nameEdit_textChanged(self, text):