Skip to content

Commit

Permalink
Merge pull request #567 from opengisch/iface
Browse files Browse the repository at this point in the history
Fix missing iface parameter
  • Loading branch information
signedav committed Oct 18, 2021
2 parents 331c955 + 8662d0e commit 3f0572c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QgisModelBaker/gui/workflow_wizard/workflow_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def __init__(self, iface, base_config):

self.setWindowTitle(self.tr("QGIS Model Baker - Workflow Wizard"))
self.log_panel = LogPanel()
self.workflow_wizard = WorkflowWizard(self, self.base_config, self)
self.workflow_wizard = WorkflowWizard(self.iface, self.base_config, self)
self.workflow_wizard.setStartId(PageIds.Intro)
self.workflow_wizard.setWindowFlags(Qt.Widget)
self.workflow_wizard.setFixedHeight(600)
Expand Down

0 comments on commit 3f0572c

Please sign in to comment.