Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 80ceae7

Browse files
committedMar 8, 2019
Fix qt warning on modeler algorithm edit
1 parent 11fb990 commit 80ceae7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎python/plugins/processing/modeler/ModelerParametersDialog.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ def setupUi(self):
151151
if self.algorithmItem:
152152
self.algorithmItem.setWidgetContext(widget_context)
153153
self.algorithmItem.registerProcessingContextGenerator(self.context_generator)
154-
if self.configuration:
155-
self.algorithmItem.setConfiguration(self.configuration)
156-
self.verticalLayout.addWidget(self.algorithmItem)
154+
if self.configuration:
155+
self.algorithmItem.setConfiguration(self.configuration)
156+
self.verticalLayout.addWidget(self.algorithmItem)
157157

158158
for param in self._alg.parameterDefinitions():
159159
if param.flags() & QgsProcessingParameterDefinition.FlagAdvanced:

0 commit comments

Comments
 (0)
Please sign in to comment.