Skip to content

Commit dfebb50

Browse files
committed
[GraphEditor] Use attribute's evaluated value for "Open File"
Otherwise, input attributes with variables (either environment ones or local ones) cannot be opened through "Open File", even though "Open Containing Folder" works fine.
1 parent 7708067 commit dfebb50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/ui/qml/GraphEditor/AttributeItemDelegate.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ RowLayout {
153153
visible: paramMenu.isFilepath
154154
height: visible ? implicitHeight : 0
155155
text: "Open File"
156-
onClicked: Qt.openUrlExternally(Filepath.stringToUrl(attribute.value))
156+
onClicked: Qt.openUrlExternally(Filepath.stringToUrl(attribute.evalValue))
157157
}
158158
}
159159

0 commit comments

Comments
 (0)