This commit is contained in:
2020-03-26 21:40:54 +01:00
parent 9ebeb7ad4b
commit 59d93a0212
3 changed files with 4 additions and 5 deletions

View File

@ -51,7 +51,7 @@ namespace ModernWpfPlayground.PropertyPresenter2
/// <param name="geometry">geometry</param>
/// <param name="brush">color of the icon</param>
/// <returns></returns>
public static ImageSource GetIcon(Geometry geometry, Brush brush)
public static ImageSource GetIcon(Geometry geometry, Brush? brush)
{
if (brush == null)
brush = Brushes.Black;
@ -77,7 +77,7 @@ namespace ModernWpfPlayground.PropertyPresenter2
FontStyles.Normal,
FontWeights.Normal,
FontStretches.Normal),
64, brush);
64, brush, 1.5);
var geometry = formattedText.BuildGeometry(new Point(0, 0));
return GetIcon(geometry, null);