diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-01 02:04:36 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-01 02:04:36 +0000 |
| commit | d0bbd07a29e766426b68a2361112892627ad9b8f (patch) | |
| tree | 770a9ce6d5a20a71ecfbf99b452bb12f5d412190 /lib/python | |
| parent | 4ea253d6b26b2f997c8fade1d3ac837034d1204b (diff) | |
| download | enigma2-d0bbd07a29e766426b68a2361112892627ad9b8f.tar.gz enigma2-d0bbd07a29e766426b68a2361112892627ad9b8f.zip | |
add lcd support (simple write servicename to lcd)
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/ServiceName.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Components/ServiceName.py b/lib/python/Components/ServiceName.py index c96b79f4..5352de5d 100644 --- a/lib/python/Components/ServiceName.py +++ b/lib/python/Components/ServiceName.py @@ -1,6 +1,7 @@ from PerServiceDisplay import * -from enigma import pNavigation, iServiceInformationPtr +#from enigma import pNavigation, iServiceInformationPtr +from enigma import * class ServiceName(PerServiceDisplay): def __init__(self, navcore): @@ -17,6 +18,7 @@ class ServiceName(PerServiceDisplay): if service != None: if not service.info(info): self.setText(info.getName()) + setLCD(info.getName()) def stopEvent(self): self.setText(""); |
