Fixing endless ... in small window size

This commit is contained in:
2023-02-22 11:55:00 +01:00
parent 5d86cb02df
commit 3ae259bd49
2 changed files with 2 additions and 12 deletions

View File

@@ -107,7 +107,7 @@ public class NamePartShrinkerConverter : IMultiValueConverter
else
{
var last = newNameParts.Last();
last.Text += "...";
newNameParts[^1] = new ItemNamePart(last.Text + "...");
}
return newNameParts;
}