summaryrefslogtreecommitdiff
path: root/grc/gui/FlowGraph.py
diff options
context:
space:
mode:
authorSebastian Koslowski <sebastian.koslowski@gmail.com>2017-10-26 20:19:55 +0200
committerSebastian Koslowski <sebastian.koslowski@gmail.com>2017-10-26 20:19:55 +0200
commitf91ed4fe77135ae23ab97566ac782c722439606b (patch)
tree1528a60e3a6f298d73fc4b1bbc57e167929b0c4d /grc/gui/FlowGraph.py
parent52a333e05e6336616ca4de61b8c37e7e405e6f6e (diff)
parent3808e137e0719d4d92f9698a4d2d020667826afd (diff)
Merge branch 'merges/master' into merges/next
Diffstat (limited to 'grc/gui/FlowGraph.py')
-rw-r--r--grc/gui/FlowGraph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/grc/gui/FlowGraph.py b/grc/gui/FlowGraph.py
index 5bcf018120..c3ce351578 100644
--- a/grc/gui/FlowGraph.py
+++ b/grc/gui/FlowGraph.py
@@ -82,7 +82,7 @@ class FlowGraph(Element, _Flowgraph):
break
return block_id
- def install_external_editor(self, param):
+ def install_external_editor(self, param, parent=None):
target = (param.get_parent().get_id(), param.get_key())
if target in self._external_updaters:
@@ -90,7 +90,7 @@ class FlowGraph(Element, _Flowgraph):
else:
config = self.get_parent().config
editor = (find_executable(config.editor) or
- Dialogs.ChooseEditorDialog(config))
+ Dialogs.ChooseEditorDialog(config, parent))
if not editor:
return
updater = functools.partial(