mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-22 06:22:58 +02:00
MacroCommandDialog: add accessibility name for details text box
This commit is contained in:
@@ -98,9 +98,11 @@ void MacroCommandDialog::PopulateOrExchange(ShuttleGui &S)
|
|||||||
S.SetStretchyCol(1);
|
S.SetStretchyCol(1);
|
||||||
mParameters = S.AddTextBox(_("&Parameters"), wxT(""), 0);
|
mParameters = S.AddTextBox(_("&Parameters"), wxT(""), 0);
|
||||||
mParameters->SetEditable(false);
|
mParameters->SetEditable(false);
|
||||||
S.Prop(0).AddPrompt( _("&Details" ) );
|
wxString prompt{_("&Details")};
|
||||||
|
S.Prop(0).AddPrompt(prompt);
|
||||||
mDetails = S.AddTextWindow( wxT(""));
|
mDetails = S.AddTextWindow( wxT(""));
|
||||||
mDetails->SetEditable(false);
|
mDetails->SetEditable(false);
|
||||||
|
mDetails->SetName(wxStripMenuCodes(prompt));
|
||||||
}
|
}
|
||||||
S.EndMultiColumn();
|
S.EndMultiColumn();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user