From a5b76d3a3fffbcc78e3f3aae823cf62dc1410b50 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Mon, 21 Jul 2025 10:04:41 -0400 Subject: [PATCH] fix(tui): splash: trigger smaller logo on 55 columns Co-authored-by: Andrey Nering --- internal/tui/components/chat/splash/splash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/components/chat/splash/splash.go b/internal/tui/components/chat/splash/splash.go index 163e8be44765404ce2f1f92e9371c2dcd6f67dd0..58fb48c2b2e290525ff88e02bb2354c5e2e2a6f6 100644 --- a/internal/tui/components/chat/splash/splash.go +++ b/internal/tui/components/chat/splash/splash.go @@ -457,7 +457,7 @@ func (s *splashCmp) Cursor() *tea.Cursor { func (s *splashCmp) isSmallScreen() bool { // Consider a screen small if either the width is less than 40 or if the // height is less than 20 - return s.width < 40 || s.height < 20 + return s.width < 55 || s.height < 20 } func (s *splashCmp) infoSection() string {