From 948ba1373b332c8048d3adaab7953bdfc36f45f6 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Mon, 8 Apr 2013 18:02:03 +0400 Subject: [PATCH] gui/channellist.cpp: fix current transponder key Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/06372e185633ab1c0ad82c278de8350630e4ab3d Author: [CST] Focus Date: 2013-04-08 (Mon, 08 Apr 2013) ------------------ 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 abdb872a8..02e53d912 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -1267,12 +1267,12 @@ int CChannelList::numericZap(int key) } return res; } - if ((key == g_settings.key_zaphistory) || (key == CRCInput::RC_games)) { - if((!autoshift && CNeutrinoApp::getInstance()->recordingstatus) || (key == CRCInput::RC_games)) { + if ((key == g_settings.key_zaphistory) || (key == g_settings.key_current_transponder)) { + if((!autoshift && CNeutrinoApp::getInstance()->recordingstatus) || (key == g_settings.key_current_transponder)) { CChannelList * orgList = CNeutrinoApp::getInstance()->channelList; CChannelList * channelList = new CChannelList(g_Locale->getText(LOCALE_CHANNELLIST_CURRENT_TP), false, true); - if(key == CRCInput::RC_games) { + if(key == g_settings.key_current_transponder) { t_channel_id recid = chanlist[selected]->channel_id >> 16; for ( unsigned int i = 0 ; i < orgList->chanlist.size(); i++) { if((orgList->chanlist[i]->channel_id >> 16) == recid)