Fix DPI scaling in Platform Chooser dialog.

This commit is contained in:
jdpurcell 2015-01-20 03:06:43 +00:00
parent 872b7b3668
commit 85d6e985a0
1 changed files with 2 additions and 2 deletions

View File

@ -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);