aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-02-03 15:44:34 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-02-03 15:44:34 +0000
commitf01049eaf5c70d53a3c8f3309486bec771b321f4 (patch)
tree0d6da8741d60155081fd5287c4c7b18916d4a423
parentf6c87b95e9f8dd1016a0d59f8a80e5a33ca4f361 (diff)
downloadenigma2-f01049eaf5c70d53a3c8f3309486bec771b321f4.tar.gz
enigma2-f01049eaf5c70d53a3c8f3309486bec771b321f4.zip
add ability to enable listboxwrap in skin
-rw-r--r--skin.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/skin.py b/skin.py
index 58426c0f..e7c84c42 100644
--- a/skin.py
+++ b/skin.py
@@ -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: