We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1199bc commit e825005Copy full SHA for e825005
glfw/momentum-scroll.c
@@ -23,7 +23,6 @@ typedef struct MomentumScroller {
23
double friction, // Deceleration factor (0-1, lower = longer coast)
24
min_velocity, // Minimum velocity before stopping
25
max_velocity, // Maximum velocity to prevent runaway scrolling
26
- boost_factor, // How much to speed up scrolling
27
velocity_scale; // Scale factor for initial velocity
28
unsigned timer_interval_ms;
29
@@ -38,7 +37,6 @@ static MomentumScroller s = {
38
37
.friction = 0.04,
39
.min_velocity = 0.5,
40
.max_velocity = 100,
41
- .boost_factor = 1.2,
42
.velocity_scale = 0.9,
43
.timer_interval_ms = 10,
44
};
0 commit comments