Use `ClientSize` when resizing Lua Forms (see #3034)

This commit is contained in:
YoshiRulz 2022-05-07 22:58:58 +10:00
parent b4ca2f9de8
commit afc442462c
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 2 additions and 2 deletions

View File

@ -346,7 +346,7 @@ namespace BizHawk.Client.EmuHawk
_luaForms.Add(form);
if (width.HasValue && height.HasValue)
{
form.Size = UIHelper.Scale(new Size(width.Value, height.Value));
form.ClientSize = UIHelper.Scale(new Size(width.Value, height.Value));
}
form.Text = title;
@ -1340,7 +1340,7 @@ namespace BizHawk.Client.EmuHawk
{
if (form.Handle == ptr)
{
SetSize(form, width, height);
form.ClientSize = UIHelper.Scale(new Size(width, height));
}
else
{