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.
This commit is contained in:
feos 2016-04-16 21:46:47 +03:00
parent c575328350
commit 2fafd85064
1 changed files with 3 additions and 9 deletions

View File

@ -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
{