1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-08 17:46:25 +01:00

Making access keys for preview buttons consistent

In std::unique_ptr<wxSizer> CreateStdButtonSizer(wxWindow *parent, long buttons, wxWindow *extra)
changed access key of preview button from v to P, so that it's consistent Preview buttons created elsewhere.
This commit is contained in:
David Bailes
2016-04-11 13:48:13 +01:00
parent 16556dd6ba
commit 85e928de73

View File

@@ -2174,7 +2174,7 @@ std::unique_ptr<wxSizer> CreateStdButtonSizer(wxWindow *parent, long buttons, wx
if (buttons & ePreviewButton) if (buttons & ePreviewButton)
{ {
bs->Add(safenew wxButton(parent, ePreviewID, _("Pre&view")), 0, wxALIGN_CENTER | wxLEFT | wxRIGHT, margin); bs->Add(safenew wxButton(parent, ePreviewID, _("&Preview")), 0, wxALIGN_CENTER | wxLEFT | wxRIGHT, margin);
} }
if (buttons & ePreviewDryButton) if (buttons & ePreviewDryButton)
{ {