mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
[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.
This commit is contained in:
parent
6b9e76d95a
commit
2c06ea4870
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ RowLayout {
|
|||
visible: paramMenu.isFilepath
|
||||
height: visible ? implicitHeight : 0
|
||||
text: "Open File"
|
||||
onClicked: Qt.openUrlExternally(Filepath.stringToUrl(attribute.value))
|
||||
onClicked: Qt.openUrlExternally(Filepath.stringToUrl(attribute.evalValue))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue