mirror of https://github.com/BOINC/boinc.git
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:
parent
3bcff4e2db
commit
7cac117d5b
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue