Skip to content

Commit def5df4

Browse files
committed
Fix double call to UIHelper.ScaleX in ControllerConfig (see #2605)
fixes 93c47b8
1 parent 5e6c4a2 commit def5df4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BizHawk.Client.EmuHawk/config/ControllerConfig/ControllerConfigPanel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ private void Startup()
142142
var label = new Label
143143
{
144144
Location = new Point(x + _inputSize + _labelPadding, y + UIHelper.ScaleY(3)),
145-
Size = new Size(UIHelper.ScaleX(labelWidth), UIHelper.ScaleY(15)),
145+
Size = new Size(labelWidth, UIHelper.ScaleY(15)),
146146
Text = _buttons[i].Replace('_', ' ').Trim()
147147
};
148148

0 commit comments

Comments
 (0)