From 7cac117d5bd55fbd1d0cc78e51cf5f219594e283 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Fri, 12 Mar 2010 02:44:02 +0000 Subject: [PATCH] MGR: change gray color for list stripes to (247, 247, 247) from (240, 240, 240) svn path=/trunk/boinc/; revision=20867 --- checkin_notes | 2 +- clientgui/BOINCBaseView.cpp | 2 +- clientgui/DlgEventLog.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/checkin_notes b/checkin_notes index 59f60dbcf1..a7e2602720 100644 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/clientgui/BOINCBaseView.cpp b/clientgui/BOINCBaseView.cpp index e0a6614657..65fdb0cf2b 100644 --- a/clientgui/BOINCBaseView.cpp +++ b/clientgui/BOINCBaseView.cpp @@ -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 } diff --git a/clientgui/DlgEventLog.cpp b/clientgui/DlgEventLog.cpp index 5f1d1cb297..ed5961d52f 100644 --- a/clientgui/DlgEventLog.cpp +++ b/clientgui/DlgEventLog.cpp @@ -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);