From 65ae1b767ccb23da0741396e937ea50e9301d41e Mon Sep 17 00:00:00 2001 From: vanhofen Date: Thu, 4 Jan 2018 16:07:47 +0100 Subject: [PATCH] channellist: use more new marker icons Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/39e19273a97ddce91ef97d0dfcfe33a5dd9c9911 Author: vanhofen Date: 2018-01-04 (Thu, 04 Jan 2018) Origin message was: ------------------ - channellist: use more new marker icons ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/channellist.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index abbc437d1..42a905c37 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -2019,8 +2019,8 @@ void CChannelList::paintItem(int pos, const bool firstpaint) } else if (edit_state && chan->bLocked) { - frameBuffer->getIconSize(NEUTRINO_ICON_LOCK, &icon_w, &icon_h); - frameBuffer->paintIcon(NEUTRINO_ICON_LOCK, x + OFFSET_INNER_MID + numwidth - icon_w, ypos, fheight); + frameBuffer->getIconSize(NEUTRINO_ICON_MARKER_LOCK, &icon_w, &icon_h); + frameBuffer->paintIcon(NEUTRINO_ICON_MARKER_LOCK, x + OFFSET_INNER_MID + numwidth - icon_w, ypos, fheight); } else if (g_settings.channellist_show_numbers) { @@ -2227,7 +2227,7 @@ void CChannelList::paintBody() numwidth = g_Font[SNeutrinoSettings::FONT_TYPE_CHANNELLIST_NUMBER]->getRenderWidth(MaxChanNr()); frameBuffer->getIconSize(NEUTRINO_ICON_BUTTON_YELLOW, &icon_w, &icon_h); numwidth = std::max(icon_w, (int) numwidth); - frameBuffer->getIconSize(NEUTRINO_ICON_LOCK, &icon_w, &icon_h); + frameBuffer->getIconSize(NEUTRINO_ICON_MARKER_LOCK, &icon_w, &icon_h); numwidth = std::max(icon_w, (int) numwidth); liststart = (selected/listmaxshow)*listmaxshow;