Tastudio - refresh branches listview when loading a new/existing tasproj
This commit is contained in:
parent
14db42c28a
commit
125a16ec67
|
@ -179,5 +179,10 @@ namespace BizHawk.Client.EmuHawk
|
||||||
return FrameRates[system, pal];
|
return FrameRates[system, pal];
|
||||||
}
|
}
|
||||||
// ***************************
|
// ***************************
|
||||||
|
|
||||||
|
public void UpdateValues()
|
||||||
|
{
|
||||||
|
BranchView.ItemCount = Branches.Count;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -348,6 +348,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (!HandleMovieLoadStuff())
|
if (!HandleMovieLoadStuff())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
BookMarkControl.UpdateValues();
|
||||||
RefreshDialog();
|
RefreshDialog();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -366,6 +367,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
HandleMovieLoadStuff();
|
HandleMovieLoadStuff();
|
||||||
CurrentTasMovie.TasStateManager.Capture(); // Capture frame 0 always.
|
CurrentTasMovie.TasStateManager.Capture(); // Capture frame 0 always.
|
||||||
|
|
||||||
|
BookMarkControl.UpdateValues();
|
||||||
RefreshDialog();
|
RefreshDialog();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue