diff -r 96232974dcdb -r 645c12de6b0c Project/NewPythonPackageDialog.py --- a/Project/NewPythonPackageDialog.py Sun Mar 30 22:00:14 2014 +0200 +++ b/Project/NewPythonPackageDialog.py Thu Apr 03 23:05:31 2014 +0200 @@ -35,6 +35,9 @@ rp = relPath.replace("/", ".").replace("\\", ".") self.packageEdit.setText(rp) + + msh = self.minimumSizeHint() + self.resize(max(self.width(), msh.width()), msh.height()) @pyqtSlot(str) def on_packageEdit_textChanged(self, txt):