1
0
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:
Paul Licameli
2019-04-30 19:12:06 -04:00
committed by James Crook
parent 2ba17c78d6
commit ad26c35d3c
3 changed files with 19 additions and 4 deletions

View File

@@ -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;