fix recent regression if auto-load is set, and default.tasproj is the most recent movie

This commit is contained in:
adelikat 2019-12-13 17:40:39 -06:00
parent 001eeba4f9
commit 5e40305d1c
1 changed files with 7 additions and 0 deletions

View File

@ -584,6 +584,13 @@ namespace BizHawk.Client.EmuHawk
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();
CurrentTasMovie.PropertyChanged += TasMovie_OnPropertyChanged;