diff --git a/src/ShuttleGui.cpp b/src/ShuttleGui.cpp index 04f376e36..a09afa554 100644 --- a/src/ShuttleGui.cpp +++ b/src/ShuttleGui.cpp @@ -2290,10 +2290,7 @@ std::unique_ptr CreateStdButtonSizer(wxWindow *parent, long buttons, wx // bs->AddButton(safenew wxButton(parent, wxID_HELP)); b = safenew wxBitmapButton(parent, wxID_HELP, theTheme.Bitmap( bmpHelpIcon )); b->SetToolTip( _("Help") ); -#if wxUSE_ACCESSIBILITY - b->SetAccessible(safenew WindowAccessible(b)); // so that name can be set on a standard control - b->SetName(_("Help")); -#endif + b->SetLabel(_("Help")); // for screen readers bs->AddButton( b ); }