Rename subgraph widgets when slot is renamed (#4821)

This commit is contained in:
AustinMroz
2025-08-07 17:18:18 -05:00
committed by GitHub
parent 1fc4fd2ca8
commit 8899b425a8

View File

@@ -125,6 +125,9 @@ export class SubgraphNode extends LGraphNode implements BaseLGraph {
if (!input) throw new Error('Subgraph input not found')
input.label = newName
if (input._widget) {
input._widget.label = newName
}
},
{ signal }
)