Tastudio - refresh branches listview when loading a new/existing tasproj

This commit is contained in:
adelikat 2015-07-19 20:49:23 -04:00
parent 14db42c28a
commit 125a16ec67
2 changed files with 7 additions and 0 deletions

View File

@ -179,5 +179,10 @@ namespace BizHawk.Client.EmuHawk
return FrameRates[system, pal];
}
// ***************************
public void UpdateValues()
{
BranchView.ItemCount = Branches.Count;
}
}
}

View File

@ -348,6 +348,7 @@ namespace BizHawk.Client.EmuHawk
if (!HandleMovieLoadStuff())
return false;
BookMarkControl.UpdateValues();
RefreshDialog();
return true;
}
@ -366,6 +367,7 @@ namespace BizHawk.Client.EmuHawk
HandleMovieLoadStuff();
CurrentTasMovie.TasStateManager.Capture(); // Capture frame 0 always.
BookMarkControl.UpdateValues();
RefreshDialog();
}
}