Tastudio - fix in the designer

This commit is contained in:
adelikat 2015-01-02 21:25:10 +00:00
parent 6fad387840
commit 698e080312
2 changed files with 13 additions and 8 deletions

View File

@ -62,11 +62,9 @@ namespace BizHawk.Client.EmuHawk
}
}
public PlaybackBox(TAStudio tastudio)
public PlaybackBox()
{
Tastudio = tastudio;
InitializeComponent();
}
protected override void OnLoad(EventArgs e)
@ -74,10 +72,17 @@ namespace BizHawk.Client.EmuHawk
base.OnLoad(e);
_programmaticallyChangingValue = true;
TurboSeekCheckbox.Checked = Global.Config.TurboSeek;
AutoRestoreCheckbox.Checked = Tastudio.Settings.AutoRestoreLastPosition;
FollowCursorCheckbox.Checked = Tastudio.Settings.FollowCursor;
if (Global.Config != null) // For the designer
{
TurboSeekCheckbox.Checked = Global.Config.TurboSeek;
}
if (Tastudio != null) // For the designer
{
AutoRestoreCheckbox.Checked = Tastudio.Settings.AutoRestoreLastPosition;
FollowCursorCheckbox.Checked = Tastudio.Settings.FollowCursor;
}
_programmaticallyChangingValue = false;
}

View File

@ -105,7 +105,7 @@ namespace BizHawk.Client.EmuHawk
this.TasStatusStrip = new StatusStripEx();
this.MessageStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.SplicerStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.TasPlaybackBox = new BizHawk.Client.EmuHawk.PlaybackBox(this);
this.TasPlaybackBox = new BizHawk.Client.EmuHawk.PlaybackBox();
this.MarkerControl = new BizHawk.Client.EmuHawk.MarkerControl();
this.MarkerContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.EditMarkerContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();