1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-30 15:39:27 +02:00

Fix Sizer Error.

This commit is contained in:
James Crook 2018-08-05 16:03:01 +01:00
parent 85074c3387
commit d3e6e92440

View File

@ -110,7 +110,7 @@ MultiDialog::MultiDialog(wxWindow * pParent,
1, wxRA_SPECIFY_COLS);
mRadioBox->SetName(boxMsg);
mRadioBox->SetSelection(0);
vSizer->Add(mRadioBox, 1, wxEXPAND | wxALIGN_CENTER | wxALL, 5);
vSizer->Add(mRadioBox, 1, wxEXPAND | wxALL, 5);
{
@ -129,7 +129,7 @@ MultiDialog::MultiDialog(wxWindow * pParent,
pButton = safenew wxButton(this, wxID_OK, _("OK"));
if (!log)
pButton->SetDefault();
buttonSizer->Add(pButton, 0, wxALIGN_RIGHT | wxALL, 5);
buttonSizer->Add(pButton, 0, wxALL, 5);
vSizer->Add(buttonSizer.release(), 0, wxALIGN_CENTER | wxALL, 5);
}