Skip to content

Commit

Permalink
Merge pull request #414 from bcq028/master
Browse files Browse the repository at this point in the history
Fix LGraphGroup node serialize error
  • Loading branch information
jagenjo committed Sep 18, 2023
2 parents 8c4a1de + bc0254f commit 2693f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/litegraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -4927,7 +4927,7 @@ LGraphNode.prototype.executeAction = function(action)
Math.round(b[3])
],
color: this.color,
font: this.font
font_size: this.font_size
};
};

Expand Down

0 comments on commit 2693f18

Please sign in to comment.