fix ugly cleartype mangling on lua canvas drawtext, unintended goof-up in code. fixes #1411

This commit is contained in:
zeromus 2018-12-30 02:32:38 -05:00
parent cf806baff7
commit 9d14c1f214
1 changed files with 0 additions and 1 deletions

View File

@ -373,7 +373,6 @@ namespace BizHawk.Client.EmuHawk
boxBackground.FillRectangle(GetBrush(backcolor ?? _defaultTextBackground.Value), rect);
boxBackground = Graphics.FromImage(Image);
boxBackground.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit;
boxBackground = Graphics.FromImage(Image);
boxBackground.DrawString(message, font, new SolidBrush(forecolor ?? Color.Black), x, y);
}