From 7db4beea89bd5b2916b344f5bea9ecea1a3b657b Mon Sep 17 00:00:00 2001 From: Yann Lanthony Date: Fri, 16 Nov 2018 20:02:48 +0100 Subject: [PATCH] [ui] use Node label in GraphEditor --- meshroom/ui/qml/GraphEditor/AttributeEditor.qml | 2 +- meshroom/ui/qml/GraphEditor/Node.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {