1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 17:11:20 +01:00

Keep NVDA from saying "panel panel" when dialogs get focus

This will need to be tested with JAWS and Window Eyes.
This commit is contained in:
Leland Lucius
2015-04-19 23:03:54 -05:00
parent 0f3358248b
commit 6212da3e2d
6 changed files with 28 additions and 1 deletions

View File

@@ -2446,6 +2446,10 @@ public:
EffectPanel(wxWindow *parent)
: wxPanel(parent)
{
// This fools NVDA into not saying "Panel" when the dialog gets focus
SetName(wxT(","));
SetLabel(wxT(","));
mAcceptsFocus = true;
}