Uit de code heb ik kunnen opmaken dat een gewone stand by anders wordt geactiveerd dan via hdmi cec:
Gewone standby:
if not Screens.Standby.inStandby and self.session.current_dialog and self.session.current_dialog.ALLOW_SUSPEND and self.session.in_exec:
self.session.open(Screens.Standby.Standby)
Via hdmi cec
from Screens.Standby import Standby, inStandby
if not inStandby:
from Tools import Notifications
Notifications.AddNotification(Standby)
Nu heb ik niet echt verstand van python enigma maar ik heb het vermoeden dat of de notification wordt tegen gehouden of dat het komt omdat het een screen is.. Een echte pli ontwikkelaar zou hier hopelijk meer over kunnen zeggen.