From aa55fea3bf37d764edc32e6c3cf18f9cfeea9665 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Sun, 29 Jul 2018 00:54:55 +0200 Subject: [PATCH] - movieplayer: signalize zap tries with key_quickzap_up/down in timeshift mode Signed-off-by: Thilo Graf --- src/gui/movieplayer.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) 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); + } } }