diff --git a/src/effects/Equalization.cpp b/src/effects/Equalization.cpp index b8a438462..1d337765e 100644 --- a/src/effects/Equalization.cpp +++ b/src/effects/Equalization.cpp @@ -851,6 +851,10 @@ void EffectEqualization::PopulateOrExchange(ShuttleGui & S) auto interpolations = LocalizedStrings(kInterpStrings, nInterpolations); mInterpChoice = S.Id(ID_Interp).AddChoice( {}, interpolations, 0 ); +#if wxUSE_ACCESSIBILITY + // so that name can be set on a standard control + mInterpChoice->SetAccessible(safenew WindowAccessible(mInterpChoice)); +#endif mInterpChoice->SetName(_("Interpolation type")); } S.EndHorizontalLay();