Lua - make form windows have a start position of "Center Parent"

This commit is contained in:
adelikat 2014-05-22 01:03:18 +00:00
parent b5122beda9
commit a89efe9c27
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ namespace BizHawk.Client.EmuHawk
public LuaWinform()
{
InitializeComponent();
StartPosition = FormStartPosition.CenterParent;
Closing += (o, e) => CloseThis();
}