summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-20 20:55:23 +0300
committerPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-20 20:55:23 +0300
commit84d6bb4edf7a9bd371bd4eda8d80d5c01128d6c3 (patch)
tree69e0a5cacfcc3f809f301adf5920d9fe5a3fc2e4 /internal
parent724ace9c282440bc258f93cf70fadbd5da216e00 (diff)
Fill status bars to full width
Diffstat (limited to 'internal')
-rw-r--r--internal/ui/table.go2
1 files changed, 2 insertions, 0 deletions
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)
}