diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am index 177ddefb3..9a4733a57 100644 --- a/data/icons/Makefile.am +++ b/data/icons/Makefile.am @@ -144,6 +144,7 @@ install_DATA = \ radiotextoff.png \ radiotextwait.png \ rec.png \ + rec_event_marker.png \ rec_gray.png \ recording.png \ res_000.png \ diff --git a/data/icons/rec_event_marker.png b/data/icons/rec_event_marker.png new file mode 100644 index 000000000..73eee96f8 Binary files /dev/null and b/data/icons/rec_event_marker.png differ diff --git a/src/gui/eventlist.cpp b/src/gui/eventlist.cpp index 867ce365c..6237ac2e3 100644 --- a/src/gui/eventlist.cpp +++ b/src/gui/eventlist.cpp @@ -804,7 +804,7 @@ void EventList::paintItem(unsigned int pos, t_channel_id channel_idI) // 2nd line // set status icons CTimerd::CTimerEventTypes etype = isScheduled(channel_idI, &evtlist[curpos]); - icontype = etype == CTimerd::TIMER_ZAPTO ? NEUTRINO_ICON_ZAP : etype == CTimerd::TIMER_RECORD ? NEUTRINO_ICON_REC : 0; + icontype = etype == CTimerd::TIMER_ZAPTO ? NEUTRINO_ICON_ZAP : etype == CTimerd::TIMER_RECORD ? NEUTRINO_ICON_RECORDING_EVENT_MARKER : 0; int iw = 0, ih; if(icontype != 0) { diff --git a/src/gui/widget/icons.h b/src/gui/widget/icons.h index c758fb9d9..b691b9148 100644 --- a/src/gui/widget/icons.h +++ b/src/gui/widget/icons.h @@ -153,6 +153,7 @@ #define NEUTRINO_ICON_RESOLUTION_000 "res_000" #define NEUTRINO_ICON_RESOLUTION_HD "res_hd" #define NEUTRINO_ICON_RESOLUTION_SD "res_sd" +#define NEUTRINO_ICON_RECORDING_EVENT_MARKER "rec_event_marker" #define NEUTRINO_ICON_ZAP "zap" #define DUMMY_ICON "dummy"