fix: make reasoning effort dialog smaller (#2247)
Andrey Nering
created
Before, it was even wider than the commands dialog, which looked weird.
Change summary
internal/ui/dialog/reasoning.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Detailed changes
@@ -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.