Tastudio - don't update bookmark view on UpdateValues()

This commit is contained in:
adelikat 2019-11-26 17:34:50 -06:00
parent ed395ca656
commit 943454554d
2 changed files with 6 additions and 3 deletions

View File

@ -58,7 +58,7 @@ namespace BizHawk.Client.EmuHawk
refreshNeeded = true;
}
RefreshDialog(refreshNeeded);
RefreshDialog(refreshNeeded, refreshBranches: false);
}
public void FastUpdate()

View File

@ -797,7 +797,7 @@ namespace BizHawk.Client.EmuHawk
return TasView.SelectedRows;
}
public void RefreshDialog(bool refreshTasView = true)
public void RefreshDialog(bool refreshTasView = true, bool refreshBranches = true)
{
if (_exiting)
{
@ -811,7 +811,10 @@ namespace BizHawk.Client.EmuHawk
MarkerControl?.UpdateValues();
if (refreshBranches)
{
BookMarkControl?.UpdateValues();
}
if (_undoForm != null && !_undoForm.IsDisposed)
{