Browse Source

Make italic text work again.

Fixes #26.
pull/39/head
Steven Kirk 11 years ago
parent
commit
265c6105ec
  1. 2
      Windows/Perspex.Direct2D1/Media/FormattedTextImpl.cs

2
Windows/Perspex.Direct2D1/Media/FormattedTextImpl.cs

@ -27,7 +27,7 @@ namespace Perspex.Direct2D1.Media
this.TextLayout = new DWrite.TextLayout( this.TextLayout = new DWrite.TextLayout(
factory, factory,
text ?? string.Empty, text ?? string.Empty,
new DWrite.TextFormat(factory, fontFamily, (float)fontSize), new DWrite.TextFormat(factory, fontFamily, DWrite.FontWeight.Normal, (DWrite.FontStyle)fontStyle, (float)fontSize),
float.MaxValue, float.MaxValue,
float.MaxValue); float.MaxValue);
} }

Loading…
Cancel
Save