--- a/src/eric7/MultiProject/PropertiesDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/MultiProject/PropertiesDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -16,23 +16,24 @@ """ Class implementing the multi project properties dialog. """ + def __init__(self, multiProject, new=True, parent=None): """ Constructor - + @param multiProject reference to the multi project object @param new flag indicating the generation of a new multi project @param parent parent widget of this dialog (QWidget) """ super().__init__(parent) self.setupUi(self) - + self.multiProject = multiProject self.newMultiProject = new - + if not new: self.descriptionEdit.setPlainText(self.multiProject.description) - + def storeData(self): """ Public method to store the entered/modified data.