From 9d4090d4b34650fbc0f3a70eb5f416fd6acae087 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Mon, 15 Feb 2021 10:43:24 +0100 Subject: [PATCH] [ui] reduce step for 3d points size --- meshroom/ui/qml/Viewer3D/Inspector3D.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/ui/qml/Viewer3D/Inspector3D.qml b/meshroom/ui/qml/Viewer3D/Inspector3D.qml index 48198fbb..7e4ac472 100644 --- a/meshroom/ui/qml/Viewer3D/Inspector3D.qml +++ b/meshroom/ui/qml/Viewer3D/Inspector3D.qml @@ -66,7 +66,7 @@ FloatingPane { MaterialLabel { text: MaterialIcons.grain; padding: 2 } RowLayout { Slider { - Layout.fillWidth: true; from: 0; to: 5; stepSize: 0.1 + Layout.fillWidth: true; from: 0; to: 5; stepSize: 0.001 value: Viewer3DSettings.pointSize onValueChanged: Viewer3DSettings.pointSize = value ToolTip.text: "Point Size: " + value.toFixed(2)