diff --git a/meshroom/ui/qml/GraphEditor/NodeStatistics.qml b/meshroom/ui/qml/GraphEditor/NodeStatistics.qml index 12cfe863e3..9849bc952a 100644 --- a/meshroom/ui/qml/GraphEditor/NodeStatistics.qml +++ b/meshroom/ui/qml/GraphEditor/NodeStatistics.qml @@ -3,6 +3,7 @@ import QtQuick.Controls import QtQuick.Layouts import Controls 1.0 +import Utils 1.0 /** * NodeStatistics displays statistics data of Node's chunks (NodeChunks). diff --git a/meshroom/ui/qml/Viewer3D/MediaLoader.qml b/meshroom/ui/qml/Viewer3D/MediaLoader.qml index fba782e596..986eaf2031 100644 --- a/meshroom/ui/qml/Viewer3D/MediaLoader.qml +++ b/meshroom/ui/qml/Viewer3D/MediaLoader.qml @@ -108,7 +108,8 @@ import Utils 1.0 Component.onCompleted: { var obj = Viewer3DSettings.sfmDataLoaderComp.createObject(sfmDataLoaderEntity, { "source": source, - "pointSize": Qt.binding(function() { return 0.01 * Viewer3DSettings.pointSize }), + "fixedPointSize": Qt.binding(function() { return Viewer3DSettings.fixedPointSize }), + "pointSize": Qt.binding(function() { return Viewer3DSettings.pointSize }), "locatorScale": Qt.binding(function() { return Viewer3DSettings.cameraScale }), "cameraPickingEnabled": Qt.binding(function() { return root.enabled && root.cameraPickingEnabled }), "resectionId": Qt.binding(function() { return Viewer3DSettings.resectionId }),