tastudio: make current branch track its new pos upon reordering

This commit is contained in:
feos 2018-06-23 00:47:46 +03:00
parent cea1a04425
commit 08e33f7ec1
1 changed files with 4 additions and 0 deletions

View File

@ -627,7 +627,11 @@ namespace BizHawk.Client.EmuHawk
{
if (e.NewCell != null && e.NewCell.IsDataCell && e.OldCell.RowIndex.Value < Movie.BranchCount)
{
int currenthash = Movie.BranchHashByIndex(Movie.CurrentBranch);
Movie.SwapBranches(e.OldCell.RowIndex.Value, e.NewCell.RowIndex.Value);
int newindex = Movie.BranchIndexByHash(currenthash);
Movie.CurrentBranch = newindex;
BranchView.SelectRow(newindex, true);
}
}