diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2015-07-23 16:36:22 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2015-11-11 21:39:35 +0100 |
commit | 2fee267dfee11bd687b4d780cb6b82924d59af3c (patch) | |
tree | 3768cd0fde949c1b99e919d0cdff958764064e79 /grc/gui/ActionHandler.py | |
parent | c9a5fabe17efe8af1c9435f746ed55c5f5790917 (diff) |
grc: open and update params from external editor
Diffstat (limited to 'grc/gui/ActionHandler.py')
-rw-r--r-- | grc/gui/ActionHandler.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grc/gui/ActionHandler.py b/grc/gui/ActionHandler.py index ee01595a33..6273178955 100644 --- a/grc/gui/ActionHandler.py +++ b/grc/gui/ActionHandler.py @@ -441,6 +441,10 @@ class ActionHandler: # null action, that updates the main window Actions.ELEMENT_SELECT() dialog.destroy() + elif action == Actions.EXTERNAL_UPDATE: + self.get_page().get_state_cache().save_new_state(self.get_flow_graph().export_data()) + self.get_flow_graph().update() + self.get_page().set_saved(False) ################################################## # View Parser Errors ################################################## |