Tastudio - don't navigate to the current frame when editing values

This commit is contained in:
adelikat 2014-09-25 01:26:39 +00:00
parent 64dee989ae
commit e9e9f574da
2 changed files with 3 additions and 4 deletions

View File

@ -242,7 +242,7 @@ namespace BizHawk.Client.EmuHawk
{
ToggleBoolState(TasView.CurrentCell.RowIndex.Value, buttonName);
GoToLastEmulatedFrameIfNecessary(TasView.CurrentCell.RowIndex.Value);
UpdateValues();
RefreshDialog();
_startBoolDrawColumn = buttonName;

View File

@ -208,9 +208,8 @@ namespace BizHawk.Client.EmuHawk
{
if (restoreFrame > Global.Emulator.Frame) // Don't unpause if we are already on the desired frame, else runaway seek
{
GlobalWin.MainForm.UnpauseEmulator();
GlobalWin.MainForm.PauseOnFrame = restoreFrame;
GlobalWin.MainForm.UnpauseEmulator();
GlobalWin.MainForm.PauseOnFrame = restoreFrame;
}
}
}