From 4cdeb65122784ea92c5ceaa5ba066235026bdd6a Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 2 Nov 2025 17:01:55 +1100 Subject: [PATCH] adjust speed --- src/editor/ui.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/ui.d b/src/editor/ui.d index 2cb2f75..a9e72da 100644 --- a/src/editor/ui.d +++ b/src/editor/ui.d @@ -428,7 +428,7 @@ EaseOutQuint(f32 x) void SetScrollOffset(UIPanel* panel) { - f32 scroll_speed = 0.8 * (g_delta * 30.0); + f32 scroll_speed = 0.8 * (g_delta * 60.0); U64Vec2 pos = VecPos(&panel.ed.buf);