Apply same NVDA trickery to the effect button panel

This commit is contained in:
Leland Lucius 2015-04-20 10:05:53 -05:00
parent 41b8850f72
commit 06209756b6
1 changed files with 4 additions and 0 deletions

View File

@ -2634,6 +2634,10 @@ bool EffectUIHost::Initialize()
wxPanel *bar = new wxPanel(this, wxID_ANY);
// This fools NVDA into not saying "Panel" when the dialog gets focus
bar->SetName(wxT(","));
bar->SetLabel(wxT(","));
wxBoxSizer *bs = new wxBoxSizer(wxHORIZONTAL);
mSupportsRealtime = mEffect->SupportsRealtime();