Fix double call to `UIHelper.ScaleX` in `ControllerConfig` (see #2605)
fixes 93c47b87b
This commit is contained in:
parent
5e6c4a2bbd
commit
def5df44fa
|
@ -142,7 +142,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
var label = new Label
|
var label = new Label
|
||||||
{
|
{
|
||||||
Location = new Point(x + _inputSize + _labelPadding, y + UIHelper.ScaleY(3)),
|
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()
|
Text = _buttons[i].Replace('_', ' ').Trim()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue