From 2fafd85064ffe8dfc672e45061666dfd46c9c5ba Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 16 Apr 2016 21:46:47 +0300 Subject: [PATCH] InputRoll: stop switching to RotatedFont when we're in vertical orientation. Still doesn't care about the font we set, since it's never created in gdirenderer. --- .../CustomControls/InputRoll.Drawing.cs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs index 33d516956a..a3b23cdba2 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs @@ -125,9 +125,7 @@ namespace BizHawk.Client.EmuHawk } else { - //zeromus test - //Gdi.PrepDrawString(NormalFont, _foreColor); - Gdi.PrepDrawString(RotatedFont, _foreColor); + Gdi.PrepDrawString(NormalFont, _foreColor); foreach (var column in visibleColumns) { @@ -135,13 +133,9 @@ namespace BizHawk.Client.EmuHawk if (IsHoveringOnColumnCell && column == CurrentCell.Column) { - //zeromus test - //Gdi.PrepDrawString(NormalFont, SystemColors.HighlightText); - Gdi.PrepDrawString(RotatedFont, SystemColors.HighlightText); + Gdi.PrepDrawString(NormalFont, SystemColors.HighlightText); Gdi.DrawString(column.Text, point); - //zeromus test - //Gdi.PrepDrawString(NormalFont, _foreColor); - Gdi.PrepDrawString(RotatedFont, _foreColor); + Gdi.PrepDrawString(NormalFont, _foreColor); } else {