From 62996f85e98e473fa7eb975e503b90cf32f946eb Mon Sep 17 00:00:00 2001 From: HueByte Date: Tue, 24 Feb 2026 21:15:41 +0100 Subject: [PATCH] fix: add space between role tag and username in status display --- src/EchoHub.Client/UI/MainWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EchoHub.Client/UI/MainWindow.cs b/src/EchoHub.Client/UI/MainWindow.cs index 1904d6d..9905312 100644 --- a/src/EchoHub.Client/UI/MainWindow.cs +++ b/src/EchoHub.Client/UI/MainWindow.cs @@ -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();