fix recent regression if auto-load is set, and default.tasproj is the most recent movie
This commit is contained in:
parent
001eeba4f9
commit
5e40305d1c
|
@ -584,6 +584,13 @@ namespace BizHawk.Client.EmuHawk
|
||||||
GoToFrame(CurrentTasMovie.Session.CurrentFrame);
|
GoToFrame(CurrentTasMovie.Session.CurrentFrame);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If we are loading an existing non-default movie, we will already have columns generated
|
||||||
|
// Only set up columns if needed
|
||||||
|
if (!TasView.AllColumns.Any())
|
||||||
|
{
|
||||||
|
SetUpColumns();
|
||||||
|
}
|
||||||
|
|
||||||
SetUpToolStripColumns();
|
SetUpToolStripColumns();
|
||||||
|
|
||||||
CurrentTasMovie.PropertyChanged += TasMovie_OnPropertyChanged;
|
CurrentTasMovie.PropertyChanged += TasMovie_OnPropertyChanged;
|
||||||
|
|
Loading…
Reference in New Issue