Fix loading groups.

This commit is contained in:
comfyanonymous 2023-11-23 01:09:15 -05:00
parent 410bf07771
commit d03d8aa2e3
1 changed files with 3 additions and 1 deletions

View File

@ -4928,7 +4928,9 @@ LGraphNode.prototype.executeAction = function(action)
this.title = o.title;
this._bounding.set(o.bounding);
this.color = o.color;
this.font_size = o.font_size;
if (o.font_size) {
this.font_size = o.font_size;
}
};
LGraphGroup.prototype.serialize = function() {