Skip to content
Permalink
Browse files
[processing] make script editor, modeler and results viewer non modal
(fix #9849)
  • Loading branch information
alexbruy committed Mar 25, 2014
1 parent bd3f5b1 commit 3374095
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
@@ -139,12 +139,14 @@ def openToolbox(self):

def openModeler(self):
dlg = ModelerDialog()
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateTree()

def openResults(self):
dlg = ResultsDialog()
dlg.show()
dlg.exec_()

def openHistory(self):
@@ -53,6 +53,7 @@ def execute(self):
dlg = ScriptEditorDialog(ScriptEditorDialog.SCRIPT_PYTHON, None)
if self.scriptType == self.SCRIPT_R:
dlg = ScriptEditorDialog(ScriptEditorDialog.SCRIPT_R, None)
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateTree()
@@ -42,6 +42,7 @@ def getIcon(self):

def execute(self):
dlg = ModelerDialog()
dlg.show()
dlg.exec_()
if dlg.update:
self.toolbox.updateTree()

0 comments on commit 3374095

Please sign in to comment.