X-Git-Url: https://scm.cri.mines-paristech.fr/git/minwii.git/blobdiff_plain/a810f09e895d66ce684214e67969fe373bf96560..d2d0e07ee1695d69a6954133c7997974b55c62c8:/src/app/widgets/cursors.py?ds=inline diff --git a/src/app/widgets/cursors.py b/src/app/widgets/cursors.py index fc05b56..1e3fc4e 100755 --- a/src/app/widgets/cursors.py +++ b/src/app/widgets/cursors.py @@ -99,3 +99,9 @@ class WarpingCursor(pygame.sprite.DirtySprite, EventHandlerMixin): def move(self, event) : self.dirty = 1 self.rect.move_ip(event.rel) + + def setPosition(self, pos) : + self.dirty = 1 + x, y = pos + rx, ry = self.rect.centerx, self.rect.centery + self.rect.move_ip(x-rx, y-ry)