Skip to content

Commit 3374095

Browse files
committed
[processing] make script editor, modeler and results viewer non modal
(fix #9849)
1 parent bd3f5b1 commit 3374095

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

python/plugins/processing/ProcessingPlugin.py

+2
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,14 @@ def openToolbox(self):
139139

140140
def openModeler(self):
141141
dlg = ModelerDialog()
142+
dlg.show()
142143
dlg.exec_()
143144
if dlg.update:
144145
self.toolbox.updateTree()
145146

146147
def openResults(self):
147148
dlg = ResultsDialog()
149+
dlg.show()
148150
dlg.exec_()
149151

150152
def openHistory(self):

python/plugins/processing/gui/CreateNewScriptAction.py

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def execute(self):
5353
dlg = ScriptEditorDialog(ScriptEditorDialog.SCRIPT_PYTHON, None)
5454
if self.scriptType == self.SCRIPT_R:
5555
dlg = ScriptEditorDialog(ScriptEditorDialog.SCRIPT_R, None)
56+
dlg.show()
5657
dlg.exec_()
5758
if dlg.update:
5859
self.toolbox.updateTree()

python/plugins/processing/modeler/CreateNewModelAction.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def getIcon(self):
4242

4343
def execute(self):
4444
dlg = ModelerDialog()
45+
dlg.show()
4546
dlg.exec_()
4647
if dlg.update:
4748
self.toolbox.updateTree()

0 commit comments

Comments
 (0)