Add space after username mention

This commit is contained in:
Joseph Madamba 2023-01-17 14:13:50 -08:00
parent 254c881ded
commit dfea42fd16
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ public MenuItem[] ContextMenuItems
{
items.Add(new OsuMenuItem(ChatStrings.MentionUser, MenuItemType.Standard, () =>
{
currentChannel.Value.TextBoxMessage.Value += $"@{user.Username}";
currentChannel.Value.TextBoxMessage.Value += $"@{user.Username} ";
}));
}