Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
}
Expand All @@ -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))
}
}

Expand Down
Loading