From 908fdd4dc48b2ed4677c70a71c5d67cfcd26a72a Mon Sep 17 00:00:00 2001 From: EP Date: Sun, 5 Oct 2025 17:01:58 +0200 Subject: [PATCH] Revert "remove some comments" --- app/app.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/app.go b/app/app.go index 5040052..ea95a96 100644 --- a/app/app.go +++ b/app/app.go @@ -137,6 +137,7 @@ func (app *Application) postSystemMessage(message string) { // Schedule the UI update to run on the main UI thread. app.app.QueueUpdateDraw(func() { systemMessage := fmt.Sprintf("\n System: %s", message) + // currentText := app.ui.GetChatText() app.ui.AppendChatText(systemMessage) }) } @@ -145,6 +146,7 @@ func (app *Application) SetMode(mode string) { if app.Mode != mode { app.Mode = mode app.ui.SetMode(mode) + // app.postSystemMessage(fmt.Sprintf("Mode changed to: %s", mode)) } }