diff -r 5dafcc891579 -r 6084bb3c3911 Project/NewPythonPackageDialog.py --- a/Project/NewPythonPackageDialog.py Wed Mar 12 19:54:14 2014 +0100 +++ b/Project/NewPythonPackageDialog.py Thu Mar 13 19:21:25 2014 +0100 @@ -33,6 +33,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):