From 2692f213a82717671fe218ec5b702df4bb931e16 Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Tue, 4 Sep 2012 23:59:13 +0000 Subject: [PATCH] fix for bug 576 http://bugzilla.audacityteam.org/show_bug.cgi?id=576 --- src/ShuttleGui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShuttleGui.cpp b/src/ShuttleGui.cpp index 85e2a44c5..92dc1d8d6 100644 --- a/src/ShuttleGui.cpp +++ b/src/ShuttleGui.cpp @@ -699,7 +699,7 @@ wxStaticBox * ShuttleGuiBase::StartStatic(const wxString &Str, int iProp) wxStaticBox * pBox = new wxStaticBox(mpParent, miId, Str ); pBox->SetLabel( Str ); - pBox->SetName( Str ); + pBox->SetName(wxStripMenuCodes(Str)); mpSubSizer = new wxStaticBoxSizer( pBox, wxVERTICAL );