cull(engine-cleanup): pass-8 phase-2 cascade round 1 after GachaUI stub
This commit is contained in:
@@ -106,29 +106,6 @@ public static class UIUtil
|
||||
}
|
||||
}
|
||||
|
||||
public static string CreateListText(IList<string> list, string separator, string header = null, string footer = null)
|
||||
{
|
||||
StringBuilder tempStringBuilder = GetTempStringBuilder();
|
||||
if (header != null)
|
||||
{
|
||||
tempStringBuilder.Append(header);
|
||||
}
|
||||
if (list.Count > 0)
|
||||
{
|
||||
tempStringBuilder.Append(list[0]);
|
||||
for (int i = 1; i < list.Count; i++)
|
||||
{
|
||||
tempStringBuilder.Append(separator);
|
||||
tempStringBuilder.Append(list[i]);
|
||||
}
|
||||
}
|
||||
if (footer != null)
|
||||
{
|
||||
tempStringBuilder.Append(footer);
|
||||
}
|
||||
return tempStringBuilder.ToString();
|
||||
}
|
||||
|
||||
public static void AdjustClassInfoPartsSize(ClassInfoParts classInfoParts, FlexibleGrid grid, int widthMax)
|
||||
{
|
||||
grid.Reposition();
|
||||
|
||||
Reference in New Issue
Block a user