From 65055c7687bc1ddd4e44dd146821b0e622eb5675 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Wed, 9 Apr 2025 20:04:44 +0200 Subject: minor fixes --- internal/tui/components/core/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/tui/components/core') diff --git a/internal/tui/components/core/status.go b/internal/tui/components/core/status.go index d2f14ad00..d67bdb7a6 100644 --- a/internal/tui/components/core/status.go +++ b/internal/tui/components/core/status.go @@ -68,7 +68,7 @@ func (m statusCmp) View() string { } // Truncate message if it's longer than available width msg := m.info.Msg - availWidth := m.availableFooterMsgWidth() - 3 // Account for ellipsis + availWidth := m.availableFooterMsgWidth() - 10 if len(msg) > availWidth && availWidth > 0 { msg = msg[:availWidth] + "..." } -- cgit v1.2.3