From c739755e9b63370089ef70ef2e3bd2340b2b6980 Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 5 Feb 2017 15:18:19 +0300 Subject: [PATCH] tastudio: hide whatever starts with "Key " by default ideally, there should be separate Keys menu items in SetUpToolStripColumns() as well, moving them to a separate dropdown and hiding/showing all at once --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 43af63fe6b..8a276b338a 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -457,11 +457,12 @@ namespace BizHawk.Client.EmuHawk // todo: make a proper user editable list? c.Name == "Power" || c.Name == "Reset" || - c.Name.StartsWith("Tilt") || c.Name == "Light Sensor" || c.Name == "Open" || c.Name == "Close" || - c.Name == "Disc Select" + c.Name == "Disc Select" || + c.Name.StartsWith("Tilt") || + c.Name.StartsWith("Key ") ); foreach (var column in columnsToHide)