Skip to content

Commit

Permalink
bump max curvature to 180deg
Browse files Browse the repository at this point in the history
  • Loading branch information
galister committed Nov 24, 2024
1 parent add121b commit 26a872e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 26a872e

Please sign in to comment.