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
This commit is contained in:
feos 2017-02-05 15:18:19 +03:00
parent d87a2b27a2
commit c739755e9b
1 changed files with 3 additions and 2 deletions

View File

@ -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)