diff options
| author | adamdottv <[email protected]> | 2025-05-15 12:18:28 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-15 12:18:28 -0500 |
| commit | 5d9058eb74581091d84b2cd935927da636b3dd37 (patch) | |
| tree | 8c9712eaf6e2ccf95d46958add21bcbdb0f82255 | |
| parent | a850320fadeb77a42913150f6631efe5b495134e (diff) | |
| download | opencode-5d9058eb74581091d84b2cd935927da636b3dd37.tar.gz opencode-5d9058eb74581091d84b2cd935927da636b3dd37.zip | |
fix: tui height
| -rw-r--r-- | internal/tui/tui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/tui.go b/internal/tui/tui.go index 2b813c2d2..cad64d30f 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) |
