From 8f16741705c42e044cb880f2c0afe66cdf7c5a36 Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Tue, 22 Jul 2025 14:16:28 +0200 Subject: [PATCH] Lower paging distance --- src/file_editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file_editor.rs b/src/file_editor.rs index d2ef204..a4f67ce 100644 --- a/src/file_editor.rs +++ b/src/file_editor.rs @@ -220,7 +220,7 @@ impl FileEditor { }); }); - self.scroll_delta = scroll_area.inner_rect.height() * 0.9; + self.scroll_delta = scroll_area.inner_rect.height() * 0.5; }); }