Fix unescaped ampersands in the Recent ROM menu.
This commit is contained in:
parent
d3b62009e6
commit
d95340182e
|
@ -50,7 +50,7 @@ namespace BizHawk.Client.EmuHawk.ToolExtensions
|
|||
}
|
||||
|
||||
//TODO - do TSMI and TSDD need disposing? yuck
|
||||
var item = new ToolStripMenuItem { Text = caption };
|
||||
var item = new ToolStripMenuItem { Text = caption.Replace("&", "&&") };
|
||||
items.Add(item);
|
||||
|
||||
item.Click += (o, ev) =>
|
||||
|
|
Loading…
Reference in New Issue