mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
- screensaver: move code for ignored msgs to screensaver code
Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -318,3 +318,20 @@ bool CScreenSaver::isActive()
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
bool CScreenSaver::ignoredMsg(neutrino_msg_t msg)
|
||||
{
|
||||
/* screensaver will ignore these msgs */
|
||||
if (
|
||||
msg == NeutrinoMessages::EVT_CURRENTEPG
|
||||
|| msg == NeutrinoMessages::EVT_NEXTEPG
|
||||
|| msg == NeutrinoMessages::EVT_CURRENTNEXT_EPG
|
||||
|| msg == NeutrinoMessages::EVT_TIMESET
|
||||
|| msg == NeutrinoMessages::EVT_PROGRAMLOCKSTATUS
|
||||
|| msg == NeutrinoMessages::EVT_ZAP_GOT_SUBSERVICES
|
||||
|| msg == NeutrinoMessages::EVT_ZAP_GOTAPIDS
|
||||
|| msg == NeutrinoMessages::EVT_ZAP_GOTPIDS
|
||||
)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user