From 6e1c46948a0067c53b816c9c7e8a7413ae12c10e Mon Sep 17 00:00:00 2001 From: Robin Olsen Date: Wed, 4 Mar 2026 17:49:32 +0100 Subject: [PATCH] expand width of task text box --- pkg/task/taskui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/task/taskui.go b/pkg/task/taskui.go index cfdbea0..2f7086b 100644 --- a/pkg/task/taskui.go +++ b/pkg/task/taskui.go @@ -69,7 +69,7 @@ func (m TaskModel) View() string { style.TextStyle.Render("Terminal too small.")) } - boxWidth := min(m.width-10, 80) + boxWidth := min(m.width-10, 120) detailsText := fmt.Sprintf("Time to complete: %s | Difficulty: %s", m.TimeToComplete, m.Difficulty)