From 0b6399ed6135dfcce625f86f30b7d07234018278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Luis=20Monta=C3=B1es=20Ojados?= Date: Sat, 17 Jan 2026 00:03:54 +0100 Subject: [PATCH] Fix UI layout: adjust chat panel and input widths to fill screen --- cmd/tui/model.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/tui/model.go b/cmd/tui/model.go index 0bee33f..996a9ab 100644 --- a/cmd/tui/model.go +++ b/cmd/tui/model.go @@ -627,14 +627,14 @@ func (m *Model) View() string { Border(lipgloss.RoundedBorder()). BorderForeground(lipgloss.Color("63")). Padding(0, 1). - Width(rightBoxWidth - 4). + Width(rightBoxWidth). Height(panelHeight) inputStyle := lipgloss.NewStyle(). Border(lipgloss.NormalBorder()). BorderForeground(lipgloss.Color("63")). Padding(0, 1). - Width(m.width - 6) + Width(m.width - 2) // Header with status bar header := m.renderStatusBar()