Tastudio - don't update bookmark view on UpdateValues()
This commit is contained in:
parent
ed395ca656
commit
943454554d
|
@ -58,7 +58,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
refreshNeeded = true;
|
refreshNeeded = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
RefreshDialog(refreshNeeded);
|
RefreshDialog(refreshNeeded, refreshBranches: false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void FastUpdate()
|
public void FastUpdate()
|
||||||
|
|
|
@ -797,7 +797,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
return TasView.SelectedRows;
|
return TasView.SelectedRows;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RefreshDialog(bool refreshTasView = true)
|
public void RefreshDialog(bool refreshTasView = true, bool refreshBranches = true)
|
||||||
{
|
{
|
||||||
if (_exiting)
|
if (_exiting)
|
||||||
{
|
{
|
||||||
|
@ -811,7 +811,10 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
MarkerControl?.UpdateValues();
|
MarkerControl?.UpdateValues();
|
||||||
|
|
||||||
BookMarkControl?.UpdateValues();
|
if (refreshBranches)
|
||||||
|
{
|
||||||
|
BookMarkControl?.UpdateValues();
|
||||||
|
}
|
||||||
|
|
||||||
if (_undoForm != null && !_undoForm.IsDisposed)
|
if (_undoForm != null && !_undoForm.IsDisposed)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue