mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 08:48:40 +02:00
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:
parent
27ce3df5cb
commit
45d3f202fc
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue