1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-02 14:17:07 +01:00

Change the NVDA trickery to the "\a" (audible bell) escape sequence.

This commit is contained in:
Leland Lucius
2015-04-20 12:33:03 -05:00
parent 06209756b6
commit c7aa6d684e
6 changed files with 14 additions and 14 deletions

View File

@@ -1472,8 +1472,8 @@ bool LV2Effect::BuildPlain()
w->SetScrollRate(0, 20);
// This fools NVDA into not saying "Panel" when the dialog gets focus
w->SetName(wxT(","));
w->SetLabel(wxT(","));
w->SetName(wxT("\a"));
w->SetLabel(wxT("\a"));
outerSizer->Add(w, 1, wxEXPAND);