Skip to content

Commit

Permalink
Fix dialog name
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 31, 2020
1 parent 7a69bf3 commit fb7f85e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/modeler/ModelerParametersDialog.py
Expand Up @@ -74,6 +74,8 @@ def __init__(self, alg, model, algName=None, configuration=None):
self.configuration = configuration
self.context = createContext()

self.setWindowTitle(self._alg.displayName())

self.widget = ModelerParametersWidget(alg, model, algName, configuration, context=self.context, dialog=self)
QgsGui.enableAutoGeometryRestore(self)

Expand Down Expand Up @@ -142,7 +144,6 @@ def __init__(self, alg, model, algName=None, configuration=None, dialog=None, co
self.configuration = configuration
self.context = context
self.dialog = dialog
self.setWindowTitle(self._alg.displayName())
self.widget_labels = {}

class ContextGenerator(QgsProcessingContextGenerator):
Expand Down

0 comments on commit fb7f85e

Please sign in to comment.