From 824fea276e6ea8e4d78caf5b61e0b1bc61efff6b Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Tue, 31 Jan 2023 12:13:25 +0800 Subject: [PATCH] FIX: modify the minimum value of height range(painting). Change-Id: I8f335b54a793aa9fc8c0f31b45322a1a90ed55f4 (cherry picked from commit c33e0971d2a24ab49dd04c3c571a8a852555e0ad) --- src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp b/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp index 487160aaa2..aa4554413c 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoPainterBase.hpp @@ -261,7 +261,7 @@ protected: static constexpr float CursorRadiusMin = 0.4f; // cannot be zero static constexpr float CursorRadiusMax = 8.f; static constexpr float CursorRadiusStep = 0.2f; - static constexpr float CursorHeightMin = 0.2f; // cannot be zero + static constexpr float CursorHeightMin = 0.1f; // cannot be zero static constexpr float CursorHeightMax = 8.f; static constexpr float CursorHeightStep = 0.2f;