1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Refresh active nodes when node properties change

This commit is contained in:
Nick O'Leary 2016-01-04 22:05:17 +00:00
parent 9fb958b302
commit 98c539f662

View File

@ -305,7 +305,7 @@ RED.editor = (function() {
}
editing_node.dirty = true;
validateNode(editing_node);
RED.view.redraw();
RED.view.redraw(true);
}
$( this ).dialog( "close" );
}
@ -1079,7 +1079,7 @@ RED.editor = (function() {
RED.history.push(historyEvent);
}
editing_node.dirty = true;
RED.view.redraw();
RED.view.redraw(true);
}
$( this ).dialog( "close" );
}