diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-02-03 15:44:34 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-02-03 15:44:34 +0000 |
| commit | f01049eaf5c70d53a3c8f3309486bec771b321f4 (patch) | |
| tree | 0d6da8741d60155081fd5287c4c7b18916d4a423 | |
| parent | f6c87b95e9f8dd1016a0d59f8a80e5a33ca4f361 (diff) | |
| download | enigma2-f01049eaf5c70d53a3c8f3309486bec771b321f4.tar.gz enigma2-f01049eaf5c70d53a3c8f3309486bec771b321f4.zip | |
add ability to enable listboxwrap in skin
| -rw-r--r-- | skin.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -133,6 +133,8 @@ def applySingleAttribute(guiObject, desktop, attrib, value): "showAlways": guiObject.showAlways, "showNever": guiObject.showNever }[value]) + elif attrib == "enableWrapAround": + guiObject.setWrapAround(True) elif attrib != 'name': print "unsupported attribute " + attrib + "=" + value except int: |
