aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Chat.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-13 16:50:13 -0500
committerMichael <[email protected]>2017-02-13 16:50:21 -0500
commit9533b7b98f87381632aabf914384d92832343a20 (patch)
treee1e6f6ed6829213e8adcf8c35c14b7dc9f0899da /ShiftOS.WinForms/Applications/Chat.cs
parent09aaca5d88e3108dcf63748f1128a880d30b844e (diff)
downloadshiftos_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.cs6
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();
+ }
}
}