mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +02:00
- movieplayer: signalize zap tries with key_quickzap_up/down in timeshift mode
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -1462,6 +1462,11 @@ void CMoviePlayerGui::quickZap(neutrino_msg_t msg)
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (msg == (neutrino_msg_t) g_settings.key_quickzap_up && timeshift)
|
||||
{
|
||||
// zap atm not possible, but signalize it in timeshift mode to get feedback
|
||||
CNeutrinoApp::getInstance()->channelList->quickZap(msg);
|
||||
}
|
||||
}
|
||||
else if ((msg == CRCInput::RC_left) || msg == (neutrino_msg_t) g_settings.key_quickzap_down)
|
||||
{
|
||||
@@ -1480,6 +1485,11 @@ void CMoviePlayerGui::quickZap(neutrino_msg_t msg)
|
||||
--filelist_it;
|
||||
}
|
||||
}
|
||||
else if (msg == (neutrino_msg_t) g_settings.key_quickzap_down && timeshift)
|
||||
{
|
||||
// zap atm not possible, but signalize it in timeshift mode to get feedback
|
||||
CNeutrinoApp::getInstance()->channelList->quickZap(msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user