From 5d9058eb74581091d84b2cd935927da636b3dd37 Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Thu, 15 May 2025 12:18:28 -0500 Subject: [PATCH] fix: tui height --- internal/tui/tui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/tui.go b/internal/tui/tui.go index 2b813c2d..cad64d30 100644 --- a/internal/tui/tui.go +++ b/internal/tui/tui.go @@ -196,7 +196,7 @@ func (a appModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) { return a.updateAllPages(msg) case tea.WindowSizeMsg: - msg.Height -= 1 // Make space for the status bar + msg.Height -= 2 // Make space for the status bar a.width, a.height = msg.Width, msg.Height s, _ := a.status.Update(msg)