mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
- change RC_back handling; its not longer translated to RC_home
Conflicts: src/gui/hdd_info.cpp src/neutrino.cpp Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -1447,7 +1447,7 @@ int CChannelList::numericZap(int key)
|
||||
chn /= 10;
|
||||
}
|
||||
}
|
||||
else if (msg == CRCInput::RC_home)
|
||||
else if (CNeutrinoApp::getInstance()->backKey(msg))
|
||||
{
|
||||
break;
|
||||
}
|
||||
@@ -1571,7 +1571,7 @@ void CChannelList::virtual_zap_mode(bool up)
|
||||
else if (msg == CRCInput::RC_up || msg == CRCInput::RC_down) {
|
||||
epgpos = (msg == CRCInput::RC_up) ? -1 : 1;
|
||||
}
|
||||
else if ((msg == CRCInput::RC_ok) || (msg == CRCInput::RC_home) || (msg == CRCInput::RC_timeout)) {
|
||||
else if ((msg == CRCInput::RC_ok) || (CNeutrinoApp::getInstance()->backKey(msg)) || (msg == CRCInput::RC_timeout)) {
|
||||
if(msg == CRCInput::RC_ok)
|
||||
doZap = true;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user