feat: Enhance chat UI with topic display and command autocomplete functionality

This commit is contained in:
HueByte
2026-02-19 05:50:24 +01:00
parent 0c2a94ef17
commit b45b4c3139
4 changed files with 262 additions and 106 deletions
+5 -1
View File
@@ -203,7 +203,11 @@ public sealed class AppOrchestrator : IDisposable
try
{
await _apiClient!.UpdateChannelTopicAsync(channel, topic);
InvokeUI(() => _mainWindow.AddSystemMessage(channel, $"Topic set to: {topic}"));
InvokeUI(() =>
{
_mainWindow.SetChannelTopic(channel, topic);
_mainWindow.AddSystemMessage(channel, $"Topic set to: {topic}");
});
}
catch (Exception ex)
{