mirror of https://github.com/BOINC/boinc.git
Fix a bad FlexGridSizer in Simple Preferences dialog which caused assert
This commit is contained in:
parent
a81dc2d18c
commit
6f3899e14e
|
@ -6221,6 +6221,7 @@ Charlie 25 Oct 2012
|
|||
- Mac: Fix icons in Simple View Task and Project selection combo boxes.
|
||||
- Mac: Eliminate some unnecessary code.
|
||||
- Mac: Fix Quit command in Simple View and a crash bug with Quit AppleEvent.
|
||||
- Fix a bad FlexGridSizer in Simple Preferences dialog which caused assert.
|
||||
|
||||
clientgui/
|
||||
BOINCGUIApp.cpp
|
||||
|
@ -6228,3 +6229,4 @@ Charlie 25 Oct 2012
|
|||
mac/
|
||||
MacBitmapComboBox.cpp,.h
|
||||
sg_CustomControls.cpp,.h
|
||||
sg_DlgPreferences.cpp
|
|
@ -276,7 +276,7 @@ void CPanelPreferences::CreateControls()
|
|||
wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL);
|
||||
itemDialog1->SetSizer(itemBoxSizer2);
|
||||
|
||||
wxFlexGridSizer* itemFlexGridSizer3 = new wxFlexGridSizer(1, 1, 0, 0);
|
||||
wxFlexGridSizer* itemFlexGridSizer3 = new wxFlexGridSizer(1, 0, 0);
|
||||
itemBoxSizer2->Add(itemFlexGridSizer3, 0, wxGROW|wxALL, 5);
|
||||
|
||||
CTransparentStaticText* itemStaticText4 = new CTransparentStaticText( itemDialog1, wxID_ANY, _("This dialog controls preferences for this computer only."), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
|
|
Loading…
Reference in New Issue