We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 978a4df + e4d0243 commit df7de6dCopy full SHA for df7de6d
meshroom/ui/qml/Viewer3D/MediaLoader.qml
@@ -117,6 +117,12 @@ import Utils 1.0
117
resectionId = Viewer3DSettings.resectionIdCount
118
root.status = obj.status;
119
})
120
+
121
+ obj.cameraSelected.connect(
122
+ function(viewId) {
123
+ obj.selectedViewId = viewId
124
+ }
125
+ )
126
}
127
128
meshroom/ui/qml/Viewer3D/SfmDataLoader.qml
@@ -17,6 +17,13 @@ SfmDataEntity {
17
18
signal cameraSelected(var viewId)
19
20
+ Connections {
21
+ target: _reconstruction
22
+ function onSelectedViewIdChanged() {
23
+ root.cameraSelected(_reconstruction.selectedViewId)
24
25
26
27
function spawnCameraSelectors() {
28
var validCameras = 0;
29
// spawn camera selector for each camera
0 commit comments