Skip to content

Commit 456f96e

Browse files
author
LoneWandererProductions
committed
Fix build
1 parent 08939a9 commit 456f96e

3 files changed

Lines changed: 1 addition & 1 deletion

File tree

0 Bytes
Loading
0 Bytes
Loading

Solaris/Helper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ internal static Bitmap GenerateGlyphOverlay(
216216
// Build font family profile dynamically
217217
var fontStyle = glyph.IsBold ? System.Drawing.FontStyle.Bold : System.Drawing.FontStyle.Regular;
218218
using (var font = new Font(glyph.FontName, glyph.FontSize, fontStyle))
219-
using (var brush = new SolidColorBrush(glyph.Color))
219+
using (var brush = new System.Drawing.SolidBrush(glyph.Color))
220220
{
221221
// Draw the crisp vector character straight onto the bitmap buffer plane
222222
g.DrawString(glyph.Symbol, font, brush, targetRect, sf);

0 commit comments

Comments
 (0)