Tastudio - Columns menu - show button names in addition to the column mnemonics

This commit is contained in:
adelikat 2015-02-24 22:46:35 +00:00
parent 0055bc1949
commit aa2984dd96
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@ namespace BizHawk.Client.EmuHawk
var menuItem = new ToolStripMenuItem
{
Text = column.Text,
Text = column.Text + " (" + column.Name + ")",
Checked = column.Visible
};