InputRoll - fix placement of rotated text
This commit is contained in:
parent
5a17d20cf0
commit
14ffd143d4
|
@ -203,7 +203,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (visibleColumns[j].Name == "FrameColumn") // TODO: don't do this hack
|
if (visibleColumns[j].Name == "FrameColumn") // TODO: don't do this hack
|
||||||
{
|
{
|
||||||
_renderer.PrepDrawString(_font, _foreColor, rotate: true);
|
_renderer.PrepDrawString(_font, _foreColor, rotate: true);
|
||||||
DrawString(text, ColumnWidth, point);
|
DrawString(text, ColumnWidth, new Point(point.X + _charSize.Height + CellWidthPadding, point.Y + CellHeightPadding));
|
||||||
_renderer.PrepDrawString(_font, _foreColor, rotate: false);
|
_renderer.PrepDrawString(_font, _foreColor, rotate: false);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue