Fix hiding of Reset and Power columns

This commit is contained in:
adelikat 2015-09-02 17:53:02 -04:00
parent 8d6dfcc7c1
commit c64e1ccdd9
1 changed files with 12 additions and 2 deletions

View File

@ -331,6 +331,17 @@ namespace BizHawk.Client.EmuHawk
AddColumn(kvp.Key, kvp.Value, 20 * kvp.Value.Length);
}
var columnsToHide = TasView.AllColumns
.Where(c => c.Name == "Power" || c.Name == "Reset");
foreach (var column in columnsToHide)
{
column.Visible = false;
}
TasView.AllColumns.ColumnsChanged();
// Patterns
int bStart = 0;
int fStart = 0;
@ -370,8 +381,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.
Width = columnWidth
};
TasView.AllColumns.Add(column);