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:
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user