From 9533b7b98f87381632aabf914384d92832343a20 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 13 Feb 2017 16:50:13 -0500 Subject: Fuckton of client-side fixes --- ShiftOS.WinForms/Applications/Chat.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ShiftOS.WinForms/Applications/Chat.cs') diff --git a/ShiftOS.WinForms/Applications/Chat.cs b/ShiftOS.WinForms/Applications/Chat.cs index 48b40de..da68fc6 100644 --- a/ShiftOS.WinForms/Applications/Chat.cs +++ b/ShiftOS.WinForms/Applications/Chat.cs @@ -114,5 +114,11 @@ namespace ShiftOS.WinForms.Applications txtuserinput.Text = ""; } } + + private void rtbchat_TextChanged(object sender, EventArgs e) + { + rtbchat.SelectionStart = rtbchat.Text.Length; + rtbchat.ScrollToCaret(); + } } } -- cgit v1.2.3