more large symbol sizes

This commit is contained in:
Schedel Pascal
2024-07-08 06:56:33 +02:00
parent 0bfe470349
commit c7ca6f5702
2 changed files with 54 additions and 2 deletions

View File

@@ -11,10 +11,11 @@ public abstract class SymbolFactory<TSymbols> : ISymbolFactory<TSymbols>
{
return size switch
{
SymbolSize.Default => Size.Empty,
SymbolSize.Small => new Size(16, 16),
SymbolSize.Medium => new Size(20, 20),
SymbolSize.Large => new Size(32, 32),
_ => Size.Empty,
_ => new Size((int)size, (int)size),
};
}