more large symbol sizes
This commit is contained in:
@@ -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),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user