fix: add space between role tag and username in status display

This commit is contained in:
HueByte
2026-02-24 21:15:41 +01:00
parent ac5348dbb0
commit 62996f85e9
+1 -1
View File
@@ -928,7 +928,7 @@ public sealed partial class MainWindow : Runnable
ServerRole.Mod => "\u2740 ", // ❀
_ => ""
};
var text = $"{statusIcon} {roleTag}{name}";
var text = $"{statusIcon} {roleTag} {name}";
var nameColor = HexColorHelper.ParseHexColor(u.NicknameColor);
return (text, nameColor, u.Username);
}).ToList();