From 4ab4db320c971db3ef22ccf47ce5e402b04761a2 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 14 Oct 2014 18:42:24 +0000 Subject: [PATCH] tastudio - fix loading of inputroll settings, column hide/show will now properly save and load --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 8335c5c3f3..34963b02de 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -1117,7 +1117,12 @@ namespace BizHawk.Client.EmuHawk } EngageTastudio(); - SetUpColumns(); + + if (!TasView.AllColumns.Any()) // If a project with column settings has already been loaded we don't need to do this + { + SetUpColumns(); + } + LoadConfigSettings(); SetColumnsFromCurrentStickies(); RefreshDialog();