[ui] only load nodes in Viewer2D when at least one chunk is finished

This commit is contained in:
Loïc Vital 2022-09-29 11:15:11 +02:00 committed by Fabien Castan
parent c71449535d
commit b91d0b372e
2 changed files with 9 additions and 1 deletions

View file

@ -161,7 +161,7 @@ FocusScope {
}
// node must be computed or at least running
if (!node.isFinishedOrRunning()) {
if (!node.isPartiallyFinished()) {
return false;
}