summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Bütow <1224732+snonux@users.noreply.github.com>2025-06-20 20:56:31 +0300
committerGitHub <noreply@github.com>2025-06-20 20:56:31 +0300
commitbd44e7e81e9808c875340806eccefc043e27a8b7 (patch)
tree2955aacf30f5924ce7e83aae9e6c58e212761e36
parent2f77a810ab95f32316979b32405cb7f9d28fdd59 (diff)
parent84d6bb4edf7a9bd371bd4eda8d80d5c01128d6c3 (diff)
Merge pull request #36 from snonux/codex/expand-status-bars-to-full-width
Improve status bar width
-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 ad64378..fc1540c 100644
--- a/internal/ui/table.go
+++ b/internal/ui/table.go
@@ -312,6 +312,7 @@ func (m Model) statusLine() string {
return lipgloss.NewStyle().
Foreground(lipgloss.Color("229")).
Background(lipgloss.Color("57")).
+ Width(m.tbl.Width()).
Render(status)
}
@@ -324,6 +325,7 @@ func (m Model) topStatusLine() string {
return lipgloss.NewStyle().
Foreground(lipgloss.Color("229")).
Background(lipgloss.Color("57")).
+ Width(m.tbl.Width()).
Render(header)
}