show lists and configs in startwizard by adjusting the zPosition
[enigma2.git] / lib / python / Components / ConditionalWidget.py
index 3d855b2728e5dc694277aa030576851d7a5fa4ef..52dcb20c84fc778cd18c1b44a470c26f0379e0df 100644 (file)
@@ -30,6 +30,9 @@ class Widget(GUIComponent):
        def hideWidget(self):
                self.state = self.HIDDEN
                self.instance.hide()
+               
+       def move(self, x, y):
+               self.instance.move(ePoint(int(x), int(y)))
        
 class ConditionalWidget(Widget):
        def __init__(self, withTimer = True):