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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user