Merge pull request #414 from bcq028/master

Fix LGraphGroup node serialize error
This commit is contained in:
Javi Agenjo
2023-09-18 10:25:54 +02:00
committed by GitHub

View File

@@ -4913,7 +4913,7 @@ LGraphNode.prototype.executeAction = function(action)
this.title = o.title;
this._bounding.set(o.bounding);
this.color = o.color;
this.font = o.font;
this.font_size = o.font_size;
};
LGraphGroup.prototype.serialize = function() {
@@ -4927,7 +4927,7 @@ LGraphNode.prototype.executeAction = function(action)
Math.round(b[3])
],
color: this.color,
font: this.font
font_size: this.font_size
};
};