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:
parent
d87a2b27a2
commit
c739755e9b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue