Make the Lua Function List dialog modeless

This commit is contained in:
adelikat 2012-10-06 13:09:45 +00:00
parent 6aa9608a77
commit e7112a9a5d
1 changed files with 1 additions and 1 deletions

View File

@ -755,7 +755,7 @@ namespace BizHawk.MultiClient
private void luaFunctionsListToolStripMenuItem_Click(object sender, EventArgs e)
{
Global.Sound.StopSound();
new LuaFunctionList().ShowDialog();
new LuaFunctionList().Show();
Global.Sound.StartSound();
}