1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 16:48:44 +02:00

Add tooltip for iconic help button.

This commit is contained in:
James Crook 2017-05-15 21:52:30 +01:00
parent bc55087968
commit 52caef9775

View File

@ -2177,6 +2177,7 @@ std::unique_ptr<wxSizer> CreateStdButtonSizer(wxWindow *parent, long buttons, wx
// Replace standard Help button with smaller icon button. // Replace standard Help button with smaller icon button.
// bs->AddButton(safenew wxButton(parent, wxID_HELP)); // bs->AddButton(safenew wxButton(parent, wxID_HELP));
b = new wxBitmapButton(parent, wxID_HELP, Help_xpm); b = new wxBitmapButton(parent, wxID_HELP, Help_xpm);
b->SetToolTip( _("Help") );
bs->AddButton( b ); bs->AddButton( b );
} }