tastudio - fix for the designer
This commit is contained in:
parent
7ec866ced5
commit
288e0351b6
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue