From: <ma...@us...> - 2003-12-20 03:39:30
|
Update of /cvsroot/sharedaemon/ui-wx/src In directory sc8-pr-cvs1:/tmp/cvs-serv5617/src Modified Files: SBPanel.cpp Log Message: Reduced sidebar headerbutton font size from 12 to 10. Index: SBPanel.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SBPanel.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- SBPanel.cpp 17 Dec 2003 04:05:41 -0000 1.5 +++ SBPanel.cpp 20 Dec 2003 03:39:27 -0000 1.6 @@ -54,8 +54,8 @@ headerbtn = new wxButton( this, -1, title, wxDefaultPosition, wxDefaultSize, 0 ); - headerbtn->SetFont( wxFont( 12, wxROMAN, wxNORMAL, wxBOLD ) ); - mainsizer->Add( headerbtn, 0, wxGROW|wxADJUST_MINSIZE, 5 ); + headerbtn->SetFont(wxFont(10, wxROMAN, wxNORMAL, wxBOLD)); + mainsizer->Add(headerbtn, 0, wxGROW|wxADJUST_MINSIZE, 5); SetAutoLayout(true); SetSizer(mainsizer); |