diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index d87685169..e399e2a0d 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -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); + } } }