From 24fb2a95bb0b41b20ead0439dd33f4a58234f5a1 Mon Sep 17 00:00:00 2001
From: Hannes Hauswedell
Date: Sun, 21 Feb 2021 17:58:17 +0000
Subject: [PATCH] GLGizmoHollow: Increase hole diameter slider range (PR #6101)
---
src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp
index d45a2e61373..614e8381147 100644
--- a/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp
+++ b/src/slic3r/GUI/Gizmos/GLGizmoHollow.cpp
@@ -621,7 +621,7 @@ RENDER_AGAIN:
ImGui::PushItemWidth(window_width - diameter_slider_left);
float diam = 2.f * m_new_hole_radius;
- m_imgui->slider_float("##hole_diameter", &diam, 1.f, 15.f, "%.1f mm", 1.f, false);
+ m_imgui->slider_float("##hole_diameter", &diam, 1.f, 25.f, "%.1f mm", 1.f, false);
// Let's clamp the value (which could have been entered by keyboard) to a larger range
// than the slider. This allows entering off-scale values and still protects against
//complete non-sense.