From eae61e16b238063ee1d8c4a03ce396e011dd8d0e Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Thu, 12 Feb 2026 11:14:49 -0300 Subject: [PATCH] fix(ui): completions offset for attachments row (#2208) refs #2129 Signed-off-by: Carlos Alexandro Becker --- internal/ui/model/ui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/model/ui.go b/internal/ui/model/ui.go index b8d94a12bb57c03cdb814a2346b117a01acfdd92..0545aa3eca7fb661e6f8e6c906af094bcbd44bc1 100644 --- a/internal/ui/model/ui.go +++ b/internal/ui/model/ui.go @@ -1889,7 +1889,7 @@ func (m *UI) Draw(scr uv.Screen, area uv.Rectangle) *tea.Cursor { x = screenW - w } x = max(0, x) - y = max(0, y) + y = max(0, y+1) // Offset for attachments row completionsView := uv.NewStyledString(m.completions.Render()) completionsView.Draw(scr, image.Rectangle{