use steps in startwizard
[enigma2.git] / lib / python / Components / Pixmap.py
index 790261188785eef1ad8103eb50648090220136c4..5f4b96915d5e1c5b449c5298dc09efadff1228ac 100644 (file)
@@ -17,7 +17,11 @@ class Pixmap(Widget):
        def removeWidget(self, w):
                pass
 
+       def move(self, x, y):
+               self.instance.move(ePoint(int(x), int(y)))
+
 class PixmapConditional(ConditionalWidget, Pixmap):
        def __init__(self, withTimer = True):
                ConditionalWidget.__init__(self)
+               Pixmap.__init__(self)