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.
1 parent badfa8a commit 3b6577bCopy full SHA for 3b6577b
meshroom/ui/qml/Shapes/Viewer/Layers/BaseLayer.qml
@@ -50,7 +50,7 @@ Item {
50
51
// Helper function to get scaled handle size
52
function getScaledHandleSize() {
53
- return Math.max(1.0, 8.0 * scaleRatio)
+ return Math.max(0.5, 8.0 * scaleRatio)
54
}
55
56
// Helper function to get scaled stroke width
@@ -65,6 +65,6 @@ Item {
65
66
// Helper function to get scaled font size
67
function getScaledFontSize() {
68
- return Math.max(4.0, (baseLayer.properties.fontSize || 10.0) * baseLayer.scaleRatio)
+ return Math.max(1.0, (baseLayer.properties.fontSize || 10.0) * baseLayer.scaleRatio)
69
70
0 commit comments