tastudio - fix for the designer

This commit is contained in:
adelikat 2014-07-28 16:03:23 +00:00
parent 7ec866ced5
commit 288e0351b6
1 changed files with 4 additions and 1 deletions

View File

@ -34,7 +34,10 @@ namespace BizHawk.Client.EmuHawk
{
InitializeComponent();
_programmaticallyChangingSeekBox = true;
TurboSeekCheckbox.Checked = Global.Config.TurboSeek;
if (Global.Config != null) // A check needed for the designer
{
TurboSeekCheckbox.Checked = Global.Config.TurboSeek;
}
_programmaticallyChangingSeekBox = false;
}