From 74040e7ef592384a6f9a5f2924ffdb823c1caf44 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 10 Oct 2016 14:19:55 +0200 Subject: [PATCH] - timerlist: fix shadow color --- src/gui/timerlist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/timerlist.cpp b/src/gui/timerlist.cpp index 89602dfe0..8a8ecea12 100644 --- a/src/gui/timerlist.cpp +++ b/src/gui/timerlist.cpp @@ -674,7 +674,7 @@ void CTimerList::paintItem(int pos) else bgcolor = COL_MENUCONTENT_PLUS_0; //shadow - frameBuffer->paintBoxRel(x + width, ypos, SHADOW_OFFSET, 2*fheight, COL_MENUCONTENTDARK_PLUS_0); + frameBuffer->paintBoxRel(x + width, ypos, SHADOW_OFFSET, 2*fheight, COL_SHADOW_PLUS_0); //item frameBuffer->paintBoxRel(x, ypos, real_width, 2*fheight, bgcolor); @@ -855,7 +855,7 @@ void CTimerList::paintFoot() } //shadow - frameBuffer->paintBoxRel(x + SHADOW_OFFSET, y + height - footerHeight, width, footerHeight + SHADOW_OFFSET, COL_MENUCONTENTDARK_PLUS_0, RADIUS_LARGE, CORNER_BOTTOM); + frameBuffer->paintBoxRel(x + SHADOW_OFFSET, y + height - footerHeight, width, footerHeight + SHADOW_OFFSET, COL_SHADOW_PLUS_0, RADIUS_LARGE, CORNER_BOTTOM); if (timerlist.empty()) ::paintButtons(x, y + height - footerHeight, width, 2, &(TimerListButtons[1]), width);