From 04e63710dfab778c70d25a4b4d94410d5f76c61b Mon Sep 17 00:00:00 2001 From: ruinivist Date: Sun, 4 Jan 2026 05:21:12 +0000 Subject: [PATCH] fix fsTreeStartOffset to resolve terminal height bug --- layout.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout.go b/layout.go index d0f04ff..3f6fa2e 100644 --- a/layout.go +++ b/layout.go @@ -6,7 +6,7 @@ const ( minNoteViewWidth = 10 dividerWidth = 1 dragHitArea = 2 // +/- chars around divider - fsTreeStartOffset = 1 + fsTreeStartOffset = 0 // there's bug when this is not 0 and the terminal height is small; I don't want to bother statusBarHeight = 3 )