diff --git a/meshroom/ui/qml/GraphEditor/NodeEditor.qml b/meshroom/ui/qml/GraphEditor/NodeEditor.qml index 6e51bda7..bcb98425 100644 --- a/meshroom/ui/qml/GraphEditor/NodeEditor.qml +++ b/meshroom/ui/qml/GraphEditor/NodeEditor.qml @@ -53,6 +53,17 @@ Panel { } var now = new Date().getTime() parent.text=Format.getTimeStr((now-nodeStartDateTime)/1000) + + var chunkCompletion=0 + if (node.chunks.count>1) { + for (var i = 0; i < node.chunks.count; i++) { + if (node.chunks.at(i).statusName == "SUCCESS") { + chunkCompletion++ + } + } + parent.text+= " | "+ chunkCompletion + "/" + node.chunks.count + " chunks" + } + } } padding: 2