From b4befa5aa5a223f404ce92d5a91d05540f62e14e Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Fri, 17 Mar 2023 02:05:22 -0400 Subject: [PATCH] Made the default handle width an odd number --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index a7e2a66..7ad5fb2 100644 --- a/config/config.go +++ b/config/config.go @@ -20,7 +20,7 @@ type Default struct { } // HandleWidth returns the default handle width value. func (Default) HandleWidth () int { - return 16 + return 15 } // ScrollVelocity returns the default scroll velocity value.