From f01049eaf5c70d53a3c8f3309486bec771b321f4 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Fri, 3 Feb 2006 15:44:34 +0000 Subject: [PATCH] add ability to enable listboxwrap in skin --- skin.py | 2 ++ 1 file changed, 2 insertions(+) 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: -- 2.30.2