Disable maximize/resize of Lua forms, since user cannot do anything on resize anyway.

This commit is contained in:
gochaism 2014-05-02 00:38:48 +00:00
parent d5a48614b7
commit 3fd9113f0d
1 changed files with 2 additions and 0 deletions

View File

@ -377,6 +377,8 @@ namespace BizHawk.Client.EmuHawk
}
form.Text = title;
form.MaximizeBox = false;
form.FormBorderStyle = FormBorderStyle.FixedDialog;
form.Show();
return (int)form.Handle;
}