From 26a872e68593b34c8081c6f0be368b9f799a6a8f Mon Sep 17 00:00:00 2001 From: galister <22305755+galister@users.noreply.github.com> Date: Sun, 24 Nov 2024 17:23:21 +0900 Subject: [PATCH] bump max curvature to 180deg --- src/backend/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {