From e825005861e32fb4d098a0985488f25fb7d2fadf Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 5 Jan 2026 20:08:09 +0530 Subject: [PATCH] Remove unused field --- glfw/momentum-scroll.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/glfw/momentum-scroll.c b/glfw/momentum-scroll.c index c77d7444f..fee0e3452 100644 --- a/glfw/momentum-scroll.c +++ b/glfw/momentum-scroll.c @@ -23,7 +23,6 @@ typedef struct MomentumScroller { double friction, // Deceleration factor (0-1, lower = longer coast) min_velocity, // Minimum velocity before stopping max_velocity, // Maximum velocity to prevent runaway scrolling - boost_factor, // How much to speed up scrolling velocity_scale; // Scale factor for initial velocity unsigned timer_interval_ms; @@ -38,7 +37,6 @@ static MomentumScroller s = { .friction = 0.04, .min_velocity = 0.5, .max_velocity = 100, - .boost_factor = 1.2, .velocity_scale = 0.9, .timer_interval_ms = 10, };