1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 00:03:52 +02: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

@@ -740,6 +740,10 @@ wxScrolledWindow * ShuttleGuiBase::StartScroller(int iStyle)
Style( wxSUNKEN_BORDER ) );
pScroller->SetScrollRate( 20,20 );
// This fools NVDA into not saying "Panel" when the dialog gets focus
pScroller->SetName(wxT(","));
pScroller->SetLabel(wxT(","));
mpWind->SetBackgroundColour(
iStyle==0
? wxColour( 245,244,240) :