diff options
| author | Michael <[email protected]> | 2017-02-13 16:50:13 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-13 16:50:21 -0500 |
| commit | 9533b7b98f87381632aabf914384d92832343a20 (patch) | |
| tree | e1e6f6ed6829213e8adcf8c35c14b7dc9f0899da /ShiftOS.WinForms/Applications/Chat.cs | |
| parent | 09aaca5d88e3108dcf63748f1128a880d30b844e (diff) | |
| download | shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.tar.gz shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.tar.bz2 shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.zip | |
Fuckton of client-side fixes
Diffstat (limited to 'ShiftOS.WinForms/Applications/Chat.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/Chat.cs | 6 |
1 files changed, 6 insertions, 0 deletions
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(); + } } } |
