mirror of https://github.com/node-red/node-red.git
Ensure node status is refreshed whenever node is edited
Fixes an issue where, if the number of node outputs was changes the node would resize, but the status text would not reposition until a new status message arrived. This change marks status as dirty whenever the node has been edited, forcing it to be redrawn.export-subflow
parent
6f91786f4d
commit
147d2a02be
|
@ -202,6 +202,7 @@ RED.editor = (function() {
|
|||
function updateNodeProperties(node, outputMap) {
|
||||
node.resize = true;
|
||||
node.dirty = true;
|
||||
node.dirtyStatus = true;
|
||||
var removedLinks = [];
|
||||
if (node.ports) {
|
||||
if (outputMap) {
|
||||
|
|
Loading…
Reference in New Issue