From 7d18a9d77eca3b286849ae0a134f9d7277249bef Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Tue, 17 Feb 2026 16:19:33 +0300 Subject: Feat: indicator for a message with an image [image: filename] --- helpfuncs.go | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'helpfuncs.go') diff --git a/helpfuncs.go b/helpfuncs.go index cc6bfe3..810b577 100644 --- a/helpfuncs.go +++ b/helpfuncs.go @@ -54,14 +54,11 @@ func refreshChatDisplay() { // Filter messages for this character filteredMessages := filterMessagesForCharacter(chatBody.Messages, viewingAs) displayText := chatToText(filteredMessages, cfg.ShowSys) - // Use QueueUpdate for thread-safe UI updates - app.QueueUpdate(func() { - textView.SetText(displayText) - colorText() - if scrollToEndEnabled { - textView.ScrollToEnd() - } - }) + textView.SetText(displayText) + colorText() + if scrollToEndEnabled { + textView.ScrollToEnd() + } } func stopTTSIfNotForUser(msg *models.RoleMsg) { -- cgit v1.2.3