1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Macro dialog: minor accessibility fixes

1. Set accessibility names for the buttons for applying a macro to the project or files. Note that although these names are not read by NVDA 2018.2, they will be read by NVDA 2018.3

2. Remove access keys from wxStaticText controls, as they do not work on this type of control.
This commit is contained in:
David Bailes
2018-07-30 11:34:00 +01:00
parent 5f27ae905c
commit f123624806
2 changed files with 26 additions and 8 deletions

View File

@@ -106,7 +106,7 @@ void MacroCommandDialog::PopulateOrExchange(ShuttleGui &S)
}
S.EndMultiColumn();
S.Prop(10).StartStatic(_("C&hoose command"), true);
S.Prop(10).StartStatic(_("Choose command"), true);
{
S.SetStyle(wxSUNKEN_BORDER | wxLC_LIST | wxLC_SINGLE_SEL);
mChoices = S.Id(CommandsListID).AddListControl();