mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[ui] add node computation on error status
This commit is contained in:
parent
e556f4f276
commit
a29061efd5
2 changed files with 3 additions and 2 deletions
|
@ -30,7 +30,7 @@ Panel {
|
|||
if (node !== null && node.isSubmittedOrRunning()) {
|
||||
timer.start()
|
||||
}
|
||||
else if (node !== null && node.isFinishedOrRunning()) {
|
||||
else if (node !== null && (node.isFinishedOrRunning() || node.globalStatus=="ERROR")) {
|
||||
computationInfo.text = Format.getTimeStr(node.elapsedTime)
|
||||
}
|
||||
else {
|
||||
|
@ -70,7 +70,7 @@ Panel {
|
|||
font.italic: true
|
||||
visible: {
|
||||
if (node !== null) {
|
||||
if ((node.isFinishedOrRunning() || node.isSubmittedOrRunning())) {
|
||||
if (node.isFinishedOrRunning() || node.isSubmittedOrRunning() || node.globalStatus=="ERROR") {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue