We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c882b53 commit e7cf429Copy full SHA for e7cf429
meshroom/ui/qml/GraphEditor/NodeEditor.qml
@@ -53,6 +53,17 @@ Panel {
53
}
54
var now = new Date().getTime()
55
parent.text=Format.getTimeStr((now-nodeStartDateTime)/1000)
56
+
57
+ var chunkCompletion=0
58
+ if (node.chunks.count>1) {
59
+ for (var i = 0; i < node.chunks.count; i++) {
60
+ if (node.chunks.at(i).statusName == "SUCCESS") {
61
+ chunkCompletion++
62
+ }
63
64
+ parent.text+= " | "+ chunkCompletion + "/" + node.chunks.count + " chunks"
65
66
67
68
69
padding: 2
0 commit comments