Fixed a window sizing issue. release-1.5.1

Sat, 12 Apr 2014 19:43:30 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 12 Apr 2014 19:43:30 +0200
changeset 67
ee1b8938c30f
parent 66
c8f88c9e4453
child 68
88a2ab34692f

Fixed a window sizing issue.

ChangeLog file | annotate | diff | comparison | revisions
PluginProjectPyramid.zip file | annotate | diff | comparison | revisions
ProjectPyramid/CreateParametersDialog.py file | annotate | diff | comparison | revisions
--- 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
 
Binary file PluginProjectPyramid.zip has changed
--- 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):

eric ide

mercurial