diff --git a/meshroom/ui/qml/GraphEditor/AttributeEditor.qml b/meshroom/ui/qml/GraphEditor/AttributeEditor.qml index 8a4d48aa..cd075ecf 100644 --- a/meshroom/ui/qml/GraphEditor/AttributeEditor.qml +++ b/meshroom/ui/qml/GraphEditor/AttributeEditor.qml @@ -29,7 +29,7 @@ ColumnLayout { Label { Layout.fillWidth: true elide: Text.ElideMiddle - text: node.nodeType + text: node.label horizontalAlignment: Text.AlignHCenter padding: 6 } diff --git a/meshroom/ui/qml/GraphEditor/Node.qml b/meshroom/ui/qml/GraphEditor/Node.qml index 5d12860d..6f021929 100755 --- a/meshroom/ui/qml/GraphEditor/Node.qml +++ b/meshroom/ui/qml/GraphEditor/Node.qml @@ -80,7 +80,7 @@ Item { width: parent.width horizontalAlignment: Text.AlignHCenter padding: 4 - text: node.nodeType + text: node.label color: "#EEE" font.pointSize: 8 background: Rectangle {