From 4d41bd595c1e2bf55f9e3ccee0921b1213c0184a Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Wed, 20 Sep 2023 21:46:41 -0400 Subject: [PATCH] Fix loading group titles. --- web/lib/litegraph.core.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/lib/litegraph.core.js b/web/lib/litegraph.core.js index 8fb5d07a..f81c83a8 100644 --- a/web/lib/litegraph.core.js +++ b/web/lib/litegraph.core.js @@ -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() {