aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorverdant <im@verdant.ee>2026-07-27 21:02:32 +0800
committerverdant <im@verdant.ee>2026-07-27 21:02:32 +0800
commit817d03e9a1f88ea09bf4b90b2d1f60ae88ed195e (patch)
tree62055174b85e0c63e4e9d750b58769eb905e096a
parenta7a41d5e8875b6a5e7a8ac23601987aaabedfe92 (diff)
downloadsf-817d03e9a1f88ea09bf4b90b2d1f60ae88ed195e.tar.gz
sf-817d03e9a1f88ea09bf4b90b2d1f60ae88ed195e.zip
Fix pane height
-rw-r--r--fm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fm.c b/fm.c
index f267af4..dbe76dc 100644
--- a/fm.c
+++ b/fm.c
@@ -51,7 +51,7 @@ static fm_info *fm_w_init(terminal *term)
pane_starty, pane_right_startx);
info->top = 0;
- info->bottom = pane_height - 1;
+ info->bottom = pane_height;
info->need_redraw = true;
return info;