lua forms - run a checkbox click callback after the event not before, fixes #545

This commit is contained in:
adelikat 2016-11-11 10:03:13 -06:00
parent 75654b9f33
commit c27355169f
1 changed files with 1 additions and 1 deletions

View File

@ -16,8 +16,8 @@ namespace BizHawk.Client.EmuHawk
protected override void OnClick(EventArgs e)
{
DoLuaClick(this, e);
base.OnClick(e);
DoLuaClick(this, e);
}
}
}