diff --git a/meshroom/ui/qml/Viewer/FloatImage.qml b/meshroom/ui/qml/Viewer/FloatImage.qml index 5c876ce5..e1ddc345 100644 --- a/meshroom/ui/qml/Viewer/FloatImage.qml +++ b/meshroom/ui/qml/Viewer/FloatImage.qml @@ -18,7 +18,6 @@ AliceVision.FloatImageViewer { property var sfmData onSfmDataChanged: { - console.warn("FLOAT IMG " + sfmData) root.surface.msfmData = sfmData; } @@ -127,13 +126,8 @@ AliceVision.FloatImageViewer { y: 0 color: "red" visible: viewerTypeString === "distortion" && isPrincipalPointsDisplayed - } - - Connections { - target: root - onSfmChanged: { - if (viewerTypeString === "distortion") - updatePrincipalPoint(); + onVisibleChanged: { + updatePrincipalPoint() } } } diff --git a/meshroom/ui/qml/Viewer/PanoramaViewer.qml b/meshroom/ui/qml/Viewer/PanoramaViewer.qml index 3426a1b0..aca47286 100644 --- a/meshroom/ui/qml/Viewer/PanoramaViewer.qml +++ b/meshroom/ui/qml/Viewer/PanoramaViewer.qml @@ -130,7 +130,6 @@ AliceVision.PanoramaViewer { } onReleased: { - console.warn(repeater.model) if (isRotating) { // Update Euler angles diff --git a/meshroom/ui/qml/Viewer/Viewer2D.qml b/meshroom/ui/qml/Viewer/Viewer2D.qml index 314bb895..d3475508 100644 --- a/meshroom/ui/qml/Viewer/Viewer2D.qml +++ b/meshroom/ui/qml/Viewer/Viewer2D.qml @@ -604,10 +604,6 @@ FocusScope { return Filepath.stringToUrl(isComputed ? activeNode.attribute("output").value : "") } - onFilepathChanged: { - console.warn("FILLLLLEPPPPATTHHHHH: " + filepath) - } - active: false // It takes time to load tracks, so keep them looaded, if we may use it again. // If we load another node, we can trash them (to eventually load the new node data). @@ -616,7 +612,6 @@ FocusScope { { active = true; } - console.warn("ITEEEEMMMMMMMM" + item + " " + active) } onIsComputedChanged: { if (usePanoramaViewer || useLensDistortionViewer)