Check for cached `SolidBrush` in `LuaPictureBox.DrawText`

This commit is contained in:
YoshiRulz 2024-09-26 08:53:04 +10:00 committed by James Groom
parent 6c514bcdd0
commit 4f69796e51
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ namespace BizHawk.Client.EmuHawk
boxBackground.FillRectangle(GetBrush(TableHelper.SafeParseColor(backColor) ?? _defaultTextBackground.Value), rect);
boxBackground = Graphics.FromImage(Image);
boxBackground.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit;
boxBackground.DrawString(message, font, new SolidBrush(TableHelper.SafeParseColor(foreColor) ?? Color.Black), x, y);
boxBackground.DrawString(message, font, GetBrush(TableHelper.SafeParseColor(foreColor) ?? Color.Black), x, y);
}
public Point GetMouse()