From 092a5508049c6933468f2ece400beb665b9c9742 Mon Sep 17 00:00:00 2001 From: gixxpunk Date: Fri, 18 Nov 2011 13:54:14 +0000 Subject: [PATCH] neutrino channellist: switch button sort order blue <-> yellow (patch by bellum) git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1863 e54a6e83-5905-42d5-8d5c-058d10e6a962 Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/61031262b1f1116e8eecbf40d4578aefdadd1313 Author: gixxpunk Date: 2011-11-18 (Fri, 18 Nov 2011) Origin message was: ------------------ - neutrino channellist: switch button sort order blue <-> yellow (patch by bellum) git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1863 e54a6e83-5905-42d5-8d5c-058d10e6a962 --- 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 3d2c357e2..39ee026d6 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -1790,8 +1790,8 @@ void CChannelList::showChannelLogo() struct button_label SChannelListButtons[NUM_LIST_BUTTONS] = { { NEUTRINO_ICON_BUTTON_RED, LOCALE_INFOVIEWER_EVENTLIST}, - { NEUTRINO_ICON_BUTTON_BLUE, LOCALE_INFOVIEWER_NEXT}, { NEUTRINO_ICON_BUTTON_YELLOW, LOCALE_BOUQUETLIST_HEAD}, + { NEUTRINO_ICON_BUTTON_BLUE, LOCALE_INFOVIEWER_NEXT}, { NEUTRINO_ICON_BUTTON_RECORD_INACTIVE, NONEXISTANT_LOCALE} }; @@ -1801,9 +1801,9 @@ void CChannelList::paintButtonBar(bool is_current) //manage now/next button if (displayNext) - SChannelListButtons[1].locale = LOCALE_INFOVIEWER_NOW; + SChannelListButtons[2].locale = LOCALE_INFOVIEWER_NOW; else - SChannelListButtons[1].locale = LOCALE_INFOVIEWER_NEXT; + SChannelListButtons[2].locale = LOCALE_INFOVIEWER_NEXT; //manage record button bool do_record = CRecordManager::getInstance()->RecordingStatus(getActiveChannel_ChannelID());