From ee7049f500a3259272b582fb49da643c31b7f224 Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Sun, 25 Apr 2021 22:07:45 +0200 Subject: [PATCH] Truncate patron names to avoid hor. scrollbar --- Code/UI/GetWebInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/UI/GetWebInfo.cs b/Code/UI/GetWebInfo.cs index a8e2e9c..0399166 100644 --- a/Code/UI/GetWebInfo.cs +++ b/Code/UI/GetWebInfo.cs @@ -64,10 +64,10 @@ namespace Flowframes.UI if (status.Contains("Active")) { if (tier.Contains("Gold")) - goldPatrons.Add(name); + goldPatrons.Add(name.Trunc(30)); if (tier.Contains("Silver")) - silverPatrons.Add(name); + silverPatrons.Add(name.Trunc(30)); } }