diff --git a/src/litegraph.js b/src/litegraph.js index 01592817..99da3d7a 100755 --- a/src/litegraph.js +++ b/src/litegraph.js @@ -9195,7 +9195,7 @@ LGraphNode.prototype.executeAction = function(action) } if (!low_quality) { ctx.font = this.title_text_font; - var title = String(node.getTitle()); + var title = String(node.label || node.getTitle()); if (title) { if (selected) { ctx.fillStyle = LiteGraph.NODE_SELECTED_TITLE_COLOR;