movieplayer: signalize zap tries with key_quickzap_up/down in timeshift mode

Origin commit data
------------------
Branch: ni/coolstream
Commit: 6f7ff2a6ba
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-07-29 (Sun, 29 Jul 2018)

Origin message was:
------------------
- movieplayer: signalize zap tries with key_quickzap_up/down in timeshift mode

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2018-07-29 00:54:55 +02:00
parent 65907d55ef
commit 4c222361ca

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 == CRCInput::RC_previoussong || 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);
}
}
}