aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2009-04-20 09:13:58 +0200
committerFraxinas <andreas.frisch@multimedia-labs.de>2009-04-20 09:13:58 +0200
commit15a8fe81499c156e251986f5bd33801f54c140e9 (patch)
tree17a4ab1a5cd664473972a8121a90530d858ff3ef /lib/python/Components/Converter
parente8f443313e47e0653d61d23c90352572194e5608 (diff)
downloadenigma2-15a8fe81499c156e251986f5bd33801f54c140e9.tar.gz
enigma2-15a8fe81499c156e251986f5bd33801f54c140e9.zip
allow progress in TemplatedMultiContent lists - patch by courtesy of nightman
Diffstat (limited to 'lib/python/Components/Converter')
-rw-r--r--lib/python/Components/Converter/TemplatedMultiContent.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/Converter/TemplatedMultiContent.py b/lib/python/Components/Converter/TemplatedMultiContent.py
index 203af23d..25c4b1a4 100644
--- a/lib/python/Components/Converter/TemplatedMultiContent.py
+++ b/lib/python/Components/Converter/TemplatedMultiContent.py
@@ -5,7 +5,7 @@ class TemplatedMultiContent(StringList):
def __init__(self, args):
StringList.__init__(self, args)
from enigma import eListboxPythonMultiContent, gFont, RT_HALIGN_LEFT, RT_HALIGN_CENTER, RT_HALIGN_RIGHT, RT_VALIGN_TOP, RT_VALIGN_CENTER, RT_VALIGN_BOTTOM, RT_WRAP
- from Components.MultiContent import MultiContentEntryText, MultiContentEntryPixmap, MultiContentEntryPixmapAlphaTest, MultiContentTemplateColor
+ from Components.MultiContent import MultiContentEntryText, MultiContentEntryPixmap, MultiContentEntryPixmapAlphaTest, MultiContentTemplateColor, MultiContentEntryProgress
l = locals()
del l["self"] # cleanup locals a bit
del l["args"]
@@ -37,7 +37,7 @@ class TemplatedMultiContent(StringList):
if what[0] == self.CHANGED_SPECIFIC and what[1] == "style":
self.setTemplate()
return
-
+
if self.source:
self.content.setList(self.source.list)
self.setTemplate()
@@ -50,7 +50,7 @@ class TemplatedMultiContent(StringList):
if style == self.active_style:
return # style did not change
- # if skin defined "templates", that means that it defines multiple styles in a dict. template should still be a default
+ # if skin defined "templates", that means that it defines multiple styles in a dict. template should still be a default
templates = self.template.get("templates")
template = self.template.get("template")