tastudio: load session and rebuild columns on every file load.
it was only loaded on tastudio launch, so whenever it's not autoloading a recent project, loading one with different syncSettings would cause ! columns.
This commit is contained in:
parent
33ac38fe5d
commit
099e37ad76
|
@ -237,9 +237,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
BranchesMarkersSplit.SplitterDistance = Settings.BranchMarkerSplitDistance;
|
||||
}
|
||||
|
||||
GoToFrame(CurrentTasMovie.Session.CurrentFrame);
|
||||
CurrentTasMovie.CurrentBranch = CurrentTasMovie.Session.CurrentBranch;
|
||||
|
||||
////////////////
|
||||
|
||||
RefreshDialog();
|
||||
|
@ -435,6 +432,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
if (!HandleMovieLoadStuff(newMovie))
|
||||
return false;
|
||||
|
||||
SetUpColumns();
|
||||
GoToFrame(CurrentTasMovie.Session.CurrentFrame);
|
||||
CurrentTasMovie.CurrentBranch = CurrentTasMovie.Session.CurrentBranch;
|
||||
|
||||
// clear all selections
|
||||
TasView.DeselectAll();
|
||||
|
|
Loading…
Reference in New Issue