From 5e40305d1cb8187a4c8d61b48d5ddc0e300a1981 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 13 Dec 2019 17:40:39 -0600 Subject: [PATCH] fix recent regression if auto-load is set, and default.tasproj is the most recent movie --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 18bd324219..4404836dd0 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -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;