Set SystemIcons.Application to Lua form icon.

This commit is contained in:
gochaism 2014-05-02 00:44:14 +00:00
parent 3fd9113f0d
commit 0a9039fc60
1 changed files with 1 additions and 0 deletions

View File

@ -379,6 +379,7 @@ namespace BizHawk.Client.EmuHawk
form.Text = title;
form.MaximizeBox = false;
form.FormBorderStyle = FormBorderStyle.FixedDialog;
form.Icon = SystemIcons.Application;
form.Show();
return (int)form.Handle;
}