rollback the playbackbox changes in last revision, we have deemed it working

This commit is contained in:
adelikat 2015-01-03 02:54:38 +00:00
parent c3f51f8b39
commit feef0e7e4c
1 changed files with 4 additions and 8 deletions

View File

@ -53,15 +53,12 @@ namespace BizHawk.Client.EmuHawk
{
get
{
return false;
// FIXME
//return Tastudio.Settings.FollowCursor;
return Tastudio.Settings.FollowCursor;
}
set
{
// FIXME
//FollowCursorCheckbox.Checked = Tastudio.Settings.FollowCursor = value;
FollowCursorCheckbox.Checked = Tastudio.Settings.FollowCursor = value;
}
}
@ -83,9 +80,8 @@ namespace BizHawk.Client.EmuHawk
if (Tastudio != null) // For the designer
{
// FIXME
//AutoRestoreCheckbox.Checked = Tastudio.Settings.AutoRestoreLastPosition;
//FollowCursorCheckbox.Checked = Tastudio.Settings.FollowCursor;
AutoRestoreCheckbox.Checked = Tastudio.Settings.AutoRestoreLastPosition;
FollowCursorCheckbox.Checked = Tastudio.Settings.FollowCursor;
}
_programmaticallyChangingValue = false;