- 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:
svenhoefer
2018-07-29 00:54:55 +02:00
committed by Thilo Graf
parent 856d979899
commit aa55fea3bf

View File

@@ -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);
}
}
}