From 9353b5afb102c398218d29455e4f4a0d1a747105 Mon Sep 17 00:00:00 2001 From: feos Date: Tue, 26 Jul 2016 20:46:15 +0300 Subject: [PATCH] tastudio: - more columns hidden by default (psx) - optimize width for those whose names are longer than 1 char --- .../tools/TAStudio/TAStudio.cs | 25 +++++++++++-------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 8d6dc6941d..7cc37540de 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -425,16 +425,16 @@ namespace BizHawk.Client.EmuHawk foreach (var kvp in columnNames) { // N64 hack for now, for fake analog - if (Emulator.SystemId == "N64") - { - if (kvp.Key.Contains("A Up") || kvp.Key.Contains("A Down") || - kvp.Key.Contains("A Left") || kvp.Key.Contains("A Right")) - { - // continue; - } - } - - AddColumn(kvp.Key, kvp.Value, 20 * kvp.Value.Length); + //if (Emulator.SystemId == "N64") + //{ + // if (kvp.Key.Contains("A Up") || kvp.Key.Contains("A Down") || + // kvp.Key.Contains("A Left") || kvp.Key.Contains("A Right")) + // { + // continue; + // } + //} + int width = kvp.Value.Length == 1 ? 20 : kvp.Value.Length * 7; + AddColumn(kvp.Key, kvp.Value, width); } var columnsToHide = TasView.AllColumns @@ -443,7 +443,10 @@ namespace BizHawk.Client.EmuHawk c.Name == "Power" || c.Name == "Reset" || c.Name.StartsWith("Tilt") || - c.Name == "Light Sensor" + c.Name == "Light Sensor" || + c.Name == "Open" || + c.Name == "Close" || + c.Name == "Disc Select" ); foreach (var column in columnsToHide)