show lists and configs in startwizard by adjusting the zPosition
[vuplus_dvbapp] / lib / python / Components / ConditionalWidget.py
index 3d855b2..52dcb20 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):