- 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
This commit is contained in:
striper
2011-10-21 09:45:16 +00:00
parent 8b0dc24e90
commit c0f6d00ed8

View File

@@ -617,7 +617,7 @@ int CChannelList::show()
paint(); paint();
timeoutEnd = CRCInput::calcTimeoutEnd(g_settings.timing[SNeutrinoSettings::TIMING_CHANLIST]); 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; bShowBouquetList = true;
loop=false; loop=false;
} }
@@ -865,7 +865,7 @@ int CChannelList::show()
g_RCInput->postMsg( msg, data ); g_RCInput->postMsg( msg, data );
loop=false; loop=false;
} }
else if ( msg == CRCInput::RC_yellow ) else if ( msg == CRCInput::RC_blue )
{ {
displayNext = !displayNext; displayNext = !displayNext;
paint(); paint();
@@ -1774,8 +1774,8 @@ void CChannelList::showChannelLogo()
struct button_label SChannelListButtons[NUM_LIST_BUTTONS] = struct button_label SChannelListButtons[NUM_LIST_BUTTONS] =
{ {
{ NEUTRINO_ICON_BUTTON_RED, LOCALE_INFOVIEWER_EVENTLIST}, { NEUTRINO_ICON_BUTTON_RED, LOCALE_INFOVIEWER_EVENTLIST},
{ NEUTRINO_ICON_BUTTON_YELLOW, LOCALE_INFOVIEWER_NEXT}, { NEUTRINO_ICON_BUTTON_BLUE, LOCALE_INFOVIEWER_NEXT},
{ NEUTRINO_ICON_BUTTON_BLUE, LOCALE_BOUQUETLIST_HEAD}, { NEUTRINO_ICON_BUTTON_YELLOW, LOCALE_BOUQUETLIST_HEAD},
{ NEUTRINO_ICON_BUTTON_RECORD_INACTIVE, NONEXISTANT_LOCALE} { NEUTRINO_ICON_BUTTON_RECORD_INACTIVE, NONEXISTANT_LOCALE}
}; };