Fix double call to `UIHelper.ScaleX` in `ControllerConfig` (see #2605)

fixes 93c47b87b
This commit is contained in:
YoshiRulz 2022-12-07 05:26:25 +10:00
parent 5e6c4a2bbd
commit def5df44fa
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ namespace BizHawk.Client.EmuHawk
var label = new Label
{
Location = new Point(x + _inputSize + _labelPadding, y + UIHelper.ScaleY(3)),
Size = new Size(UIHelper.ScaleX(labelWidth), UIHelper.ScaleY(15)),
Size = new Size(labelWidth, UIHelper.ScaleY(15)),
Text = _buttons[i].Replace('_', ' ').Trim()
};