From 35cc8c068f0883e685cef3824b0a238145c680a1 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Fri, 20 Feb 2026 12:14:45 +0300 Subject: Fix: force update statusline on colorchange --- bot.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bot.go') diff --git a/bot.go b/bot.go index 830f344..a2a0d69 100644 --- a/bot.go +++ b/bot.go @@ -456,6 +456,7 @@ func monitorModelLoad(modelID string) { if err := notifyUser("model loaded", "Model "+modelID+" is now loaded and ready."); err != nil { logger.Debug("failed to notify user", "error", err) } + refreshChatDisplay() return } } @@ -763,6 +764,7 @@ func chatWatcher(ctx context.Context) { func chatRound(r *models.ChatRoundReq) error { botRespMode = true + updateStatusLine() botPersona := cfg.AssistantRole if cfg.WriteNextMsgAsCompletionAgent != "" { botPersona = cfg.WriteNextMsgAsCompletionAgent -- cgit v1.2.3