From f9c869f52122121d30ddfebca7580f337a2920b3 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Sun, 10 Apr 2016 19:11:29 +0100 Subject: [PATCH] Refresh node info when edit tray closes --- editor/js/ui/editor.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/js/ui/editor.js b/editor/js/ui/editor.js index c5749e752..d6644da66 100644 --- a/editor/js/ui/editor.js +++ b/editor/js/ui/editor.js @@ -626,6 +626,9 @@ RED.editor = (function() { if (RED.view.state() != RED.state.IMPORT_DRAGGING) { RED.view.state(RED.state.DEFAULT); } + if (editing_node) { + RED.sidebar.info.refresh(editing_node); + } RED.workspaces.refresh(); }, show: function() {