From c2c4160af03be6012129282c7743a3f23af31c29 Mon Sep 17 00:00:00 2001 From: bymyself Date: Tue, 30 Jul 2024 17:33:49 -0700 Subject: [PATCH] Use group font size from user (#41) --- src/litegraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/litegraph.js b/src/litegraph.js index 2a7656e5d..1b0686789 100755 --- a/src/litegraph.js +++ b/src/litegraph.js @@ -4908,7 +4908,7 @@ LGraphNode.prototype.executeAction = function(action) LGraphGroup.prototype._ctor = function(title) { this.title = title || "Group"; - this.font_size = 24; + this.font_size = LiteGraph.DEFAULT_GROUP_FONT || 24; this.color = LGraphCanvas.node_colors.pale_blue ? LGraphCanvas.node_colors.pale_blue.groupcolor : "#AAA";