1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 06:09:47 +02:00

Spectral Selection toolbar: minor accessibility change.

Change the accessible name of the combo box from "Spectral selection" to "Show". It's less verbose, and brings it into line with the "Show" combo box in the Selection toolbar.
This commit is contained in:
David Bailes 2018-07-05 11:44:00 +01:00
parent 7d9c82f470
commit bfec6f0aa2

View File

@ -150,7 +150,7 @@ void SpectralSelectionBar::Populate()
};
mChoice = safenew wxChoice
(this, OnChoiceID, wxDefaultPosition, wxDefaultSize, 2, choices,
0, wxDefaultValidator, _("Spectral Selection"));
0, wxDefaultValidator, _("Show"));
mChoice->SetSelection(mbCenterAndWidth ? 0 : 1);
#if wxUSE_ACCESSIBILITY
// so that name can be set on a standard control