From 14ffd143d4fae622555749702fe90432ed807b83 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 26 Oct 2019 16:25:42 -0500 Subject: [PATCH] InputRoll - fix placement of rotated text --- BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs index 2a9e80a1af..a5fa6e87b7 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.Drawing.cs @@ -203,7 +203,7 @@ namespace BizHawk.Client.EmuHawk if (visibleColumns[j].Name == "FrameColumn") // TODO: don't do this hack { _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); } else