diff --git a/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml b/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml
index d0942e2c6e..8d426326ed 100644
--- a/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml
+++ b/meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml
@@ -29,12 +29,14 @@ RowLayout {
function updateAttributeLabel() {
background.color = attribute.validValue ? Qt.darker(palette.window, 1.1) : Qt.darker(Colors.red, 1.5)
+ console.warn("about to enter if")
if (attribute.desc) {
var tooltip = ""
if (!attribute.validValue && attribute.desc.errorMessage !== "")
tooltip += "Error: " + Format.plainToHtml(attribute.desc.errorMessage) + "
"
- tooltip += " " + attribute.desc.name + ": " + attribute.type + "
" + Format.plainToHtml(attribute.desc.description)
+ tooltip += " " + attribute.fullName + ": " + attribute.type + "
" + Format.plainToHtml(attribute.desc.description)
+ console.warn(attribute.fullName)
parameterTooltip.text = tooltip
}
}
@@ -81,7 +83,7 @@ RowLayout {
var tooltip = ""
if (!object.validValue && object.desc.errorMessage !== "")
tooltip += "Error: " + Format.plainToHtml(object.desc.errorMessage) + "
"
- tooltip += "" + object.desc.name + ": " + attribute.type + "
" + Format.plainToHtml(object.description)
+ tooltip += "" + object.fullName + ": " + attribute.type + "
" + Format.plainToHtml(object.description)
return tooltip
}
visible: parameterMA.containsMouse
diff --git a/meshroom/ui/qml/GraphEditor/AttributePin.qml b/meshroom/ui/qml/GraphEditor/AttributePin.qml
index 6e160f48f0..a02f49b19c 100755
--- a/meshroom/ui/qml/GraphEditor/AttributePin.qml
+++ b/meshroom/ui/qml/GraphEditor/AttributePin.qml
@@ -41,7 +41,7 @@ RowLayout {
spacing: 3
ToolTip {
- text: attribute.name + ": " + attribute.type
+ text: attribute.fullName + ": " + attribute.type
visible: nameLabel.hovered
y: nameLabel.y + nameLabel.height