diff --git a/src/EchoHub.Client/UI/MainWindow.cs b/src/EchoHub.Client/UI/MainWindow.cs index f46e5cc..77ebece 100644 --- a/src/EchoHub.Client/UI/MainWindow.cs +++ b/src/EchoHub.Client/UI/MainWindow.cs @@ -572,6 +572,9 @@ public sealed partial class MainWindow : Runnable if (prefix.Length > text.Length) _inputField.Text = prefix; } + + // Move cursor to end after autocomplete + _inputField.InsertionPoint = new System.Drawing.Point(_inputField.Text?.Length ?? 0, 0); } private void OnChatViewportChanged()