Fix DPI scaling in Platform Chooser dialog.
This commit is contained in:
parent
872b7b3668
commit
85d6e985a0
|
@ -49,8 +49,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
var radio = new RadioButton
|
||||
{
|
||||
Text = platform.Value,
|
||||
Location = new Point(15, 15 + (count * spacing)),
|
||||
Size = new Size(200, 23)
|
||||
Location = UIHelper.Scale(new Point(15, 15 + (count * spacing))),
|
||||
Size = UIHelper.Scale(new Size(200, 23))
|
||||
};
|
||||
|
||||
PlatformsGroupBox.Controls.Add(radio);
|
||||
|
|
Loading…
Reference in New Issue