Skip to content

Commit

Permalink
[processing] also make Modeler non-blocking when opened from context …
Browse files Browse the repository at this point in the history
…menus (follow up 51ec2bf)
  • Loading branch information
alexbruy committed Jan 27, 2016
1 parent 554ca8d commit 602437a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/plugins/processing/modeler/CreateNewModelAction.py
Expand Up @@ -44,6 +44,7 @@ def getIcon(self):

def execute(self):
dlg = ModelerDialog()
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateProvider('model')
1 change: 1 addition & 0 deletions python/plugins/processing/modeler/EditModelAction.py
Expand Up @@ -40,6 +40,7 @@ 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 602437a

Please sign in to comment.