mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-13 14:13:32 +02:00
Fix Tab key navigation on Mac in presence of static boxes
This commit is contained in:
committed by
James Crook
parent
2ba17c78d6
commit
ad26c35d3c
@@ -52,6 +52,7 @@
|
||||
|
||||
#include "../FileFormats.h"
|
||||
#include "../Prefs.h"
|
||||
#include "../ShuttleGui.h"
|
||||
#include "../WaveTrack.h"
|
||||
#include "ImportPlugin.h"
|
||||
|
||||
@@ -278,7 +279,7 @@ static wxString AskCopyOrEdit()
|
||||
|
||||
vbox->Add(message, 1, wxALL | wxEXPAND, 10);
|
||||
|
||||
wxStaticBox *box = safenew wxStaticBox(&dialog, -1, _("Choose an import method"));
|
||||
wxStaticBox *box = safenew wxStaticBoxWrapper(&dialog, -1, _("Choose an import method"));
|
||||
box->SetName(box->GetLabel());
|
||||
|
||||
wxRadioButton *aliasRadio;
|
||||
|
Reference in New Issue
Block a user