aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Chat.cs
diff options
context:
space:
mode:
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();
+ }
}
}