From 84d6bb4edf7a9bd371bd4eda8d80d5c01128d6c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20B=C3=BCtow?= <1224732+snonux@users.noreply.github.com> Date: Fri, 20 Jun 2025 20:55:23 +0300 Subject: Fill status bars to full width --- internal/ui/table.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/ui/table.go b/internal/ui/table.go index 8d1b07c..88ddf6a 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -271,6 +271,7 @@ func (m Model) statusLine() string { return lipgloss.NewStyle(). Foreground(lipgloss.Color("229")). Background(lipgloss.Color("57")). + Width(m.tbl.Width()). Render(status) } @@ -283,6 +284,7 @@ func (m Model) topStatusLine() string { return lipgloss.NewStyle(). Foreground(lipgloss.Color("229")). Background(lipgloss.Color("57")). + Width(m.tbl.Width()). Render(header) } -- cgit v1.2.3