From 686ac63e12444d5b6554aac30987b11278c338eb Mon Sep 17 00:00:00 2001 From: pythongosssss <125205205+pythongosssss@users.noreply.github.com> Date: Fri, 24 Mar 2023 16:51:17 +0000 Subject: [PATCH] Set title to widget name --- web/extensions/core/widgetInputs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/extensions/core/widgetInputs.js b/web/extensions/core/widgetInputs.js index b699373ef..ad8bcdf02 100644 --- a/web/extensions/core/widgetInputs.js +++ b/web/extensions/core/widgetInputs.js @@ -149,6 +149,7 @@ app.registerExtension({ app.graph.add(node); node.pos = [this.pos[0] - node.size[0] - 30, this.pos[1]]; node.connect(0, this, slot); + node.title = this.inputs[slot].name; } return r;