diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-04-12 19:50:53 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-04-12 19:50:53 +0000 |
| commit | ead18eb53880ecff8c41fa2e2db7ae87e2b950de (patch) | |
| tree | b48af59c16a7080aa37682627c578c9f19674384 /lib/python/Components/ServiceList.py | |
| parent | daa673f3b6bc40c4d1251335e233ffb1956f1722 (diff) | |
| download | enigma2-ead18eb53880ecff8c41fa2e2db7ae87e2b950de.tar.gz enigma2-ead18eb53880ecff8c41fa2e2db7ae87e2b950de.zip | |
follow itemHeight changes
Diffstat (limited to 'lib/python/Components/ServiceList.py')
| -rw-r--r-- | lib/python/Components/ServiceList.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/ServiceList.py b/lib/python/Components/ServiceList.py index 0532d248..7dfcd05d 100644 --- a/lib/python/Components/ServiceList.py +++ b/lib/python/Components/ServiceList.py @@ -160,13 +160,13 @@ class ServiceList(HTMLComponent, GUIComponent): self.mode = mode if mode == self.MODE_NORMAL: - self.instance.setItemHeight(28) + self.l.setItemHeight(28) self.l.setVisualMode(eListboxServiceContent.visModeComplex) self.l.setElementFont(self.l.celServiceName, gFont("Regular", 22)) self.l.setElementPosition(self.l.celServiceName, eRect(0, 0, self.instance.size().width(), 28)) self.l.setElementFont(self.l.celServiceInfo, gFont("Regular", 18)) else: - self.instance.setItemHeight(28) + self.l.setItemHeight(28) self.l.setVisualMode(eListboxServiceContent.visModeComplex) self.l.setElementFont(self.l.celServiceNumber, gFont("Regular", 20)) self.l.setElementPosition(self.l.celServiceNumber, eRect(0, 0, 50, 28)) |
