mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 08:29: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);
|
1, wxRA_SPECIFY_COLS);
|
||||||
mRadioBox->SetName(boxMsg);
|
mRadioBox->SetName(boxMsg);
|
||||||
mRadioBox->SetSelection(0);
|
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"));
|
pButton = safenew wxButton(this, wxID_OK, _("OK"));
|
||||||
if (!log)
|
if (!log)
|
||||||
pButton->SetDefault();
|
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);
|
vSizer->Add(buttonSizer.release(), 0, wxALIGN_CENTER | wxALL, 5);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user