From d98ceb4aa45a7cc12ae6e3b16065aa388b2a368e Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Fri, 5 Jan 2018 00:52:58 +0100 Subject: [PATCH] - eventlist: use new record/timeshift/zap marker icons Signed-off-by: Thilo Graf --- src/gui/eventlist.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/eventlist.cpp b/src/gui/eventlist.cpp index c508fb4a6..b72bbfd64 100644 --- a/src/gui/eventlist.cpp +++ b/src/gui/eventlist.cpp @@ -795,12 +795,12 @@ void CEventList::paintItem(unsigned int pos, t_channel_id channel_idI) t_channel_id channel_tmp = m_showChannel ? evtlist[currpos].channelID : channel_idI; int timerID = -1; CTimerd::CTimerEventTypes etype = isScheduled(channel_tmp, &evtlist[currpos],&timerID); - const char * icontype = etype == CTimerd::TIMER_ZAPTO ? NEUTRINO_ICON_ZAP : 0; + const char * icontype = etype == CTimerd::TIMER_ZAPTO ? NEUTRINO_ICON_MARKER_ZAP : 0; if(etype == CTimerd::TIMER_RECORD){ - icontype = NEUTRINO_ICON_REC;// NEUTRINO_ICON_MARKER_RECORD + icontype = NEUTRINO_ICON_MARKER_RECORD; }else{ if (timerID > 0 && CRecordManager::getInstance()->CheckRecordingId_if_Timeshift(timerID)) - icontype = NEUTRINO_ICON_AUTO_SHIFT; + icontype = NEUTRINO_ICON_MARKER_TIMESHIFT; } int iw = 0, ih = 0; if(icontype != 0) {