diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-05-11 00:11:45 +0200 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-05-11 00:11:45 +0200 |
| commit | c3f2fa3d78531c2cb7de469d38e44c965102d454 (patch) | |
| tree | 76746a039b271bdfe0ca50ef41132c33908166fb /lib/python/Components | |
| parent | 946fb003e4be2e1485308d7fc5bb7274732751a3 (diff) | |
| download | enigma2-c3f2fa3d78531c2cb7de469d38e44c965102d454.tar.gz enigma2-c3f2fa3d78531c2cb7de469d38e44c965102d454.zip | |
allow per-template itemheight; in multi-template-mode, template is now a (itemheight, templatelist)-tuple
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/Converter/TemplatedMultiContent.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/python/Components/Converter/TemplatedMultiContent.py b/lib/python/Components/Converter/TemplatedMultiContent.py index 25c4b1a4..8a708c14 100644 --- a/lib/python/Components/Converter/TemplatedMultiContent.py +++ b/lib/python/Components/Converter/TemplatedMultiContent.py @@ -18,13 +18,13 @@ class TemplatedMultiContent(StringList): assert "template" in self.template or "default" in self.template["templates"] # we need to have a default template if not "template" in self.template: # default template can be ["template"] or ["templates"]["default"] - self.template["template"] = self.template["templates"]["default"] + self.template["template"] = self.template["templates"]["default"][1] + self.template["itemHeight"] = self.template["template"][0] def changed(self, what): if not self.content: from enigma import eListboxPythonMultiContent self.content = eListboxPythonMultiContent() - self.content.setItemHeight(self.template["itemHeight"]) self.setTemplate() # also setup fonts (also given by source) @@ -53,8 +53,12 @@ class TemplatedMultiContent(StringList): # 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") + itemheight = self.template["itemHeight"] - if templates and style: # if we have a custom style defined in the source, and different templates in the skin, look it up - template = templates.get(self.source.style, template) # default to default template + if templates and style and style in templates: # if we have a custom style defined in the source, and different templates in the skin, look it up + template = templates[style][1] + itemheight = templates[style][0] self.content.setTemplate(template) + + self.content.setItemHeight(itemheight) |
