From a9d6ff977f0722d251790f08d60cbc30b383495c Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Thu, 23 Nov 2023 01:08:21 -0500 Subject: [PATCH] Fix group loading. --- src/litegraph.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/litegraph.js b/src/litegraph.js index 63a5ce9d0..767506af8 100755 --- a/src/litegraph.js +++ b/src/litegraph.js @@ -4952,7 +4952,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() {