Skip to content

Commit

Permalink
Fix qt warning on opening modeler dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 5, 2019
1 parent 723051b commit c1cc2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/modeler/ModelerDialog.py
Expand Up @@ -252,7 +252,7 @@ def __init__(self, model=None):
self.variables_dock.setFeatures(QDockWidget.DockWidgetFloatable | QDockWidget.DockWidgetMovable)
self.variables_dock.setObjectName("variablesDock")
self.variables_dock_contents = QWidget()
vl_v = QVBoxLayout(self.algorithmsDockContents)
vl_v = QVBoxLayout()
vl_v.setContentsMargins(0, 0, 0, 0)
self.variables_editor = QgsVariableEditorWidget()
vl_v.addWidget(self.variables_editor)
Expand Down

0 comments on commit c1cc2b5

Please sign in to comment.