From d05c2acd644baf972c614882c7ba8a133e6ad700 Mon Sep 17 00:00:00 2001 From: gixxpunk Date: Fri, 21 Oct 2011 09:45:16 +0000 Subject: [PATCH] switch button color in channellist (blue <-> yellow) to align with tuxbox cvs git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1764 e54a6e83-5905-42d5-8d5c-058d10e6a962 Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/c0f6d00ed828c899b2d28247f3f1008fc06c3757 Author: gixxpunk Date: 2011-10-21 (Fri, 21 Oct 2011) Origin message was: ------------------ - switch button color in channellist (blue <-> yellow) to align with tuxbox cvs git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1764 e54a6e83-5905-42d5-8d5c-058d10e6a962 --- src/gui/channellist.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 6e0df4891..699bb514f 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -617,7 +617,7 @@ int CChannelList::show() paint(); timeoutEnd = CRCInput::calcTimeoutEnd(g_settings.timing[SNeutrinoSettings::TIMING_CHANLIST]); } - else if (msg == CRCInput::RC_blue && ( bouquetList != NULL ) ) { //FIXME + else if (msg == CRCInput::RC_yellow && ( bouquetList != NULL ) ) { //FIXME bShowBouquetList = true; loop=false; } @@ -865,7 +865,7 @@ int CChannelList::show() g_RCInput->postMsg( msg, data ); loop=false; } - else if ( msg == CRCInput::RC_yellow ) + else if ( msg == CRCInput::RC_blue ) { displayNext = !displayNext; paint(); @@ -1774,8 +1774,8 @@ void CChannelList::showChannelLogo() struct button_label SChannelListButtons[NUM_LIST_BUTTONS] = { { NEUTRINO_ICON_BUTTON_RED, LOCALE_INFOVIEWER_EVENTLIST}, - { NEUTRINO_ICON_BUTTON_YELLOW, LOCALE_INFOVIEWER_NEXT}, - { NEUTRINO_ICON_BUTTON_BLUE, LOCALE_BOUQUETLIST_HEAD}, + { NEUTRINO_ICON_BUTTON_BLUE, LOCALE_INFOVIEWER_NEXT}, + { NEUTRINO_ICON_BUTTON_YELLOW, LOCALE_BOUQUETLIST_HEAD}, { NEUTRINO_ICON_BUTTON_RECORD_INACTIVE, NONEXISTANT_LOCALE} };