Disable maximize/resize of Lua forms, since user cannot do anything on resize anyway.
This commit is contained in:
parent
d5a48614b7
commit
3fd9113f0d
|
@ -377,6 +377,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
form.Text = title;
|
||||
form.MaximizeBox = false;
|
||||
form.FormBorderStyle = FormBorderStyle.FixedDialog;
|
||||
form.Show();
|
||||
return (int)form.Handle;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue