X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/2cc6286f24b7cde25c468b2b4a817e5fa7a9cceb..2f71009743e6a1a516b82ac06c4a89ee4d6ea703:/lib/python/Components/Converter/ServiceName.py diff --git a/lib/python/Components/Converter/ServiceName.py b/lib/python/Components/Converter/ServiceName.py index 094dbdfa..77647dd0 100644 --- a/lib/python/Components/Converter/ServiceName.py +++ b/lib/python/Components/Converter/ServiceName.py @@ -1,5 +1,5 @@ from Components.Converter.Converter import Converter -from enigma import iServiceInformation +from enigma import iServiceInformation, iPlayableService class ServiceName(Converter, object): NAME = 0 @@ -30,3 +30,7 @@ class ServiceName(Converter, object): return self.getServiceInfoValue(info, iServiceInformation.sProvider) text = property(getText) + + def changed(self, *args): + if not len(args) or args[0] in [iPlayableService.evStart, iPlayableService.evEnd]: + Converter.changed(self)