add some info to debug prints
[enigma2.git] / skin.py
diff --git a/skin.py b/skin.py
index 58426c0f18f052332f78b1da24a7318bcde92ba6..922b3d7e71af9986e64f4c9988344cd2636bc6e2 100644 (file)
--- 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:
@@ -203,7 +205,6 @@ def readSkin(screen, skin, name, desktop):
        
        if myscreen is None:
                # try embedded skin
-               print screen.__dict__
                if "parsedSkin" in screen.__dict__:
                        myscreen = screen.parsedSkin
                elif "skin" in screen.__dict__: