mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-06 14:35:32 +01:00
Fix Sizer Error.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user