summaryrefslogtreecommitdiff
path: root/grc/gui/FlowGraph.py
diff options
context:
space:
mode:
authorSebastian Koslowski <sebastian.koslowski@gmail.com>2017-10-26 20:16:51 +0200
committerSebastian Koslowski <sebastian.koslowski@gmail.com>2017-10-26 20:16:51 +0200
commitfc18be2d25cf0b3da9c53d0dabfae0efdded4f7b (patch)
treeca8b62b48771d456b28a12bf822f48647febc25e /grc/gui/FlowGraph.py
parent5a8799f5bd477d5e8e520dd0dab1b8874db0e68e (diff)
parenta3d5c7fdcef630a902b62305c2b0c57121e24209 (diff)
Merge branch 'github/pr/1495' into merges/master
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 e0cd7d1441..ea52a13c0c 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(