tastudio: hide Power and Reset columns by default.

This commit is contained in:
feos 2015-09-01 21:09:24 +03:00
parent a998d472cf
commit 0949bcb1bb
1 changed files with 1 additions and 0 deletions

View File

@ -371,6 +371,7 @@ namespace BizHawk.Client.EmuHawk
Name = columnName,
Text = columnText,
Width = columnWidth,
Visible = (columnName == "Power" || columnName == "Reset") ? false : true // hack to hide them by default. they are needed once per million years.
};
TasView.AllColumns.Add(column);