Skip to content

Commit 0dd5c10

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 bd42f70 commit 0dd5c10

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
@@ -152,7 +152,7 @@ RowLayout {
152152
visible: paramMenu.isFilepath
153153
height: visible ? implicitHeight : 0
154154
text: "Open File"
155-
onClicked: Qt.openUrlExternally(Filepath.stringToUrl(attribute.value))
155+
onClicked: Qt.openUrlExternally(Filepath.stringToUrl(attribute.evalValue))
156156
}
157157
}
158158

0 commit comments

Comments
 (0)