mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-30 15:39:27 +02:00
Fix Sizer Error.
This commit is contained in:
parent
85074c3387
commit
d3e6e92440
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user