Call postInitialise in modeler Dialog

This commit is contained in:
arnaud.morvan@camptocamp.com 2016-09-18 12:56:24 +02:00 committed by volaya
parent a38c13d523
commit 8d16161742

View File

@ -185,9 +185,7 @@ class ModelerParametersDialog(QDialog):
self.dependenciesPanel = self.getDependenciesPanel()
self.verticalLayout.addWidget(label)
self.verticalLayout.addWidget(self.dependenciesPanel)
self.verticalLayout.addStretch(1000)
self.setLayout(self.verticalLayout)
self.setPreviousValues()
self.setWindowTitle(self._alg.name)
@ -231,6 +229,9 @@ class ModelerParametersDialog(QDialog):
self.buttonBox.rejected.connect(self.cancelPressed)
QMetaObject.connectSlotsByName(self)
for wrapper in self.wrappers.values():
wrapper.postInitialize(self.wrappers.values())
def requestFinished(self):
"""Change the webview HTML content"""
reply = self.sender()