MGR: change gray color for list stripes to (247, 247, 247) from (240, 240, 240)

svn path=/trunk/boinc/; revision=20867
This commit is contained in:
Charlie Fenton 2010-03-12 02:44:02 +00:00
parent 3bcff4e2db
commit 7cac117d5b
3 changed files with 4 additions and 4 deletions

View File

@ -1848,7 +1848,7 @@ Charlie 11 Mar 2010
Charlie 11 Mar 2010
- MGR: use alternating gray and white background stripes in all lists; change
gray color to (230, 230, 230).
gray color to (247, 247, 247) from (240, 240, 240).
clientgui/
BOINCBaseView.cpp,.h

View File

@ -127,7 +127,7 @@ CBOINCBaseView::CBOINCBaseView(
#if BASEVIEW_STRIPES
m_pWhiteBackgroundAttr = new wxListItemAttr(*wxBLACK, *wxWHITE, wxNullFont);
m_pGrayBackgroundAttr = new wxListItemAttr(*wxBLACK, wxColour(230, 230, 230), wxNullFont);
m_pGrayBackgroundAttr = new wxListItemAttr(*wxBLACK, wxColour(247, 247, 247), wxNullFont);
#endif
}

View File

@ -177,8 +177,8 @@ bool CDlgEventLog::Create( wxWindow* WXUNUSED(parent), wxWindowID id, const wxSt
wxNullFont
);
#if EVENT_LOG_STRIPES
m_pMessageInfoGrayAttr = new wxListItemAttr(*wxBLACK, wxColour(230, 230, 230), wxNullFont);
m_pMessageErrorGrayAttr = new wxListItemAttr(*wxRED, wxColour(230, 230, 230), wxNullFont);
m_pMessageInfoGrayAttr = new wxListItemAttr(*wxBLACK, wxColour(247, 247, 247), wxNullFont);
m_pMessageErrorGrayAttr = new wxListItemAttr(*wxRED, wxColour(247, 247, 247), wxNullFont);
m_pMessageErrorGrayAttr = new wxListItemAttr(*wxRED, wxColour(0, 0, 0, 15), wxNullFont);
#else
m_pMessageInfoGrayAttr = new wxListItemAttr(*m_pMessageInfoAttr);