Display the "Computed Externally" icon whenever the node runs externally

A node running externally used to mean it was running on a submitter.
This definition has been extended and a node is now considered to be
external if it is running on a submitter or running in another instance
of Meshroom. The "Computed Externally" is updated to reflect that
change.
This commit is contained in:
Candice Bentéjac 2023-01-05 16:44:55 +01:00
parent 27ce3df5cb
commit 45d3f202fc
2 changed files with 2 additions and 1 deletions

View file

@ -235,7 +235,7 @@ Item {
// Submitted externally indicator
MaterialLabel {
visible: ["SUBMITTED", "RUNNING"].includes(node.globalStatus) && node.chunks.count > 0 && node.globalExecMode === "EXTERN"
visible: ["SUBMITTED", "RUNNING"].includes(node.globalStatus) && node.chunks.count > 0 && node.isExternal
text: MaterialIcons.cloud
padding: 2
font.pointSize: 7