From ba8fd5870edb3a6171a2264e833d231f48a23d38 Mon Sep 17 00:00:00 2001 From: thilo Date: Fri, 28 Oct 2011 22:16:09 +0000 Subject: [PATCH] *neutrino eventlist: use info button instead help button git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1792 e54a6e83-5905-42d5-8d5c-058d10e6a962 --- 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 ee0eead37..b4e245246 100644 --- a/src/gui/eventlist.cpp +++ b/src/gui/eventlist.cpp @@ -839,7 +839,7 @@ void EventList::paintHead(std::string _channelname, std::string _channelname_pre { const short font_h = 8; int iw = 0, ih = 0; - frameBuffer->getIconSize(NEUTRINO_ICON_BUTTON_HELP, &iw, &ih); + frameBuffer->getIconSize(NEUTRINO_ICON_BUTTON_INFO, &iw, &ih); frameBuffer->paintBoxRel(x,y, width,theight+0, COL_MENUHEAD_PLUS_0, RADIUS_LARGE, CORNER_TOP); int name_width =((width-8-iw)/3); @@ -891,8 +891,8 @@ void EventList::paint(t_channel_id channel_id) int iw = 0, ih = 0; if (evtlist[0].eventID != 0) { - frameBuffer->getIconSize(NEUTRINO_ICON_BUTTON_HELP, &iw, &ih); - frameBuffer->paintIcon(NEUTRINO_ICON_BUTTON_HELP, x+ width - 4 - iw, y, theight); + frameBuffer->getIconSize(NEUTRINO_ICON_BUTTON_INFO, &iw, &ih); + frameBuffer->paintIcon(NEUTRINO_ICON_BUTTON_INFO, x+ width - 4 - iw, y, theight); } frameBuffer->paintBoxRel(x, y+theight, width, height-theight-iheight, COL_INFOBAR, 0, CORNER_TOP);