Navigation Menu

Skip to content

Commit

Permalink
Revert "[processing] also make Modeler non-blocking when opened from …
Browse files Browse the repository at this point in the history
…context menus (follow up 51ec2bf)"

This reverts commit 602437a.

Having modeler as non-blocking window it risky as changes in the
algorithms will not be reflected in it.
  • Loading branch information
alexbruy committed Jan 27, 2016
1 parent 469985d commit 1858cc7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion python/plugins/processing/modeler/CreateNewModelAction.py
Expand Up @@ -44,7 +44,6 @@ def getIcon(self):

def execute(self):
dlg = ModelerDialog()
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateProvider('model')
1 change: 0 additions & 1 deletion python/plugins/processing/modeler/EditModelAction.py
Expand Up @@ -40,7 +40,6 @@ def isEnabled(self):

def execute(self):
dlg = ModelerDialog(self.alg.getCopy())
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateProvider('model')

0 comments on commit 1858cc7

Please sign in to comment.