Revert "[processing] also make Modeler non-blocking when opened from context menus (follow up 51ec2bfba6)"

This reverts commit 602437aa0676a7ad4ce21bc32b62c2b107474bff.

Having modeler as non-blocking window it risky as changes in the
algorithms will not be reflected in it.
This commit is contained in:
Alexander Bruy 2016-01-27 14:00:15 +02:00
parent 469985da39
commit 1858cc719c
2 changed files with 0 additions and 2 deletions

View File

@ -44,7 +44,6 @@ class CreateNewModelAction(ToolboxAction):
def execute(self):
dlg = ModelerDialog()
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateProvider('model')

View File

@ -40,7 +40,6 @@ class EditModelAction(ContextAction):
def execute(self):
dlg = ModelerDialog(self.alg.getCopy())
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateProvider('model')