Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Vital <mugulmotion@gmail.com>2022-09-23 16:54:19 +0300
committerFabien Castan <fabcastan@gmail.com>2022-10-19 11:50:10 +0300
commit592dc1121e49d09883e8f55c1c17a14e8296a23b (patch)
tree081c4315f01ecb063364f4943a566ab925d4ecc6
parente35c5a72990667f074a6ddeec1ba95b71fff97b2 (diff)
[ui] check node is computed or running before loading in viewer2D
-rwxr-xr-xmeshroom/ui/qml/main.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/meshroom/ui/qml/main.qml b/meshroom/ui/qml/main.qml
index db84ae24..1904d022 100755
--- a/meshroom/ui/qml/main.qml
+++ b/meshroom/ui/qml/main.qml
@@ -853,7 +853,9 @@ ApplicationWindow {
function viewNode(node, mouse) {
// 2D viewer
- viewer2D.displayedNode = node;
+ if (node.isFinishedOrRunning()) {
+ viewer2D.displayedNode = node;
+ }
// 3D viewer
for(var i=0; i < node.attributes.count; ++i)