Add a function that strip the wizard informations from the comment, and return the...
[bertos.git] / wizard / BWizard.py
index 851021cec4f7a9b4d05c3ff9bba18209a83c7b20..9a035b963b8991ee41ed5be9bcbc344164193a28 100644 (file)
@@ -22,6 +22,8 @@ class BWizard(QWizard):
     
     def __init__(self):
         QWizard.__init__(self)
+        # TODO: choose the right minimum size
+        self.setMinimumSize(1000, 500)
         self.setWindowTitle(self.tr("Create a BeRTOS project"))
         self._addPages()
         self._connectSignals()