1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 16:49:41 +02:00

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

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();