diff options
| author | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 20:55:23 +0300 |
|---|---|---|
| committer | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 20:55:23 +0300 |
| commit | 84d6bb4edf7a9bd371bd4eda8d80d5c01128d6c3 (patch) | |
| tree | 69e0a5cacfcc3f809f301adf5920d9fe5a3fc2e4 | |
| parent | 724ace9c282440bc258f93cf70fadbd5da216e00 (diff) | |
Fill status bars to full width
| -rw-r--r-- | internal/ui/table.go | 2 |
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) } |
