diff --git a/src/backend/input.rs b/src/backend/input.rs index 430f241..b7eedd0 100644 --- a/src/backend/input.rs +++ b/src/backend/input.rs @@ -423,7 +423,7 @@ where if can_curve { let cur = hovered.state.curvature.unwrap_or(0.0); - let new = (cur - scroll * 0.01).min(0.35); + let new = (cur - scroll * 0.01).min(0.5); if new <= f32::EPSILON { hovered.state.curvature = None; } else {