X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/22143de3c8c4780166beeb1e0a1575768c76bfe4..7ee8589392aca17526ca30264689f204afc9646a:/lib/python/Components/Pixmap.py diff --git a/lib/python/Components/Pixmap.py b/lib/python/Components/Pixmap.py index 2a54ea98..5f4b9691 100644 --- a/lib/python/Components/Pixmap.py +++ b/lib/python/Components/Pixmap.py @@ -17,6 +17,9 @@ 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)