From 7fe592d73c354ef85fe2a071998c40217b888760 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 18 Feb 2026 14:53:44 -0300 Subject: [PATCH] fix: make reasoning effort dialog smaller (#2247) Before, it was even wider than the commands dialog, which looked weird. --- internal/ui/dialog/reasoning.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/ui/dialog/reasoning.go b/internal/ui/dialog/reasoning.go index 2a333f155cdc1499993f05411d7090793f74f54e..cd8ba7d1e293fcb66d04c76f420463aa3a94770f 100644 --- a/internal/ui/dialog/reasoning.go +++ b/internal/ui/dialog/reasoning.go @@ -20,8 +20,8 @@ import ( const ( // ReasoningID is the identifier for the reasoning effort dialog. ReasoningID = "reasoning" - reasoningDialogMaxWidth = 80 - reasoningDialogMaxHeight = 12 + reasoningDialogMaxWidth = 50 + reasoningDialogMaxHeight = 10 ) // Reasoning represents a dialog for selecting reasoning effort.