MGR: Fix compatibility problem with wxWidgets 2.8.8 or later

svn path=/trunk/boinc/; revision=17744
This commit is contained in:
Charlie Fenton 2009-04-08 04:06:47 +00:00
parent 3c58c38958
commit a7dea6f086
2 changed files with 7 additions and 0 deletions

View File

@ -3673,3 +3673,9 @@ Eric 7 Apr 2009
api/
boinc_api.cpp,h
Charlie 7 Apr 2009
MGR: Fix compatibility problem with sizing of all-projects list in Attach
Project Wizard when using wxWidgets 2.8.8 or later.
clientgui/
ProjectListCtrl.cpp

View File

@ -85,6 +85,7 @@ bool CProjectListCtrl::Create( wxWindow* parent )
SetBackgroundColour( wxT("WHITE") );
SetScrollRate( 0, 25 );
SetMinSize(wxSize(250,185));
GetSizer()->Fit(this);
////@end CProjectListCtrl creation
return TRUE;