X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/f96fb4a3b382ac97bcdfd86549f685b02ff7968a..0fd6f300332426a83063d3c253764bde52d70974:/src/app/widgets/cursors.py

diff --git a/src/app/widgets/cursors.py b/src/app/widgets/cursors.py
index 2c22b5d..041c0fb 100755
--- a/src/app/widgets/cursors.py
+++ b/src/app/widgets/cursors.py
@@ -53,7 +53,6 @@ class WarpingCursor(pygame.sprite.DirtySprite, EventHandlerMixin):
         pygame.event.set_allowed(pygame.MOUSEMOTION)
         # ---
         x, y = pygame.mouse.get_pos()
-        print 'mouse pos :', x, y
         left = x - self.width / 2
         top = y - self.height / 2
         self.rect = pygame.Rect((left, top), (self.width, self.height))
@@ -61,16 +60,16 @@ class WarpingCursor(pygame.sprite.DirtySprite, EventHandlerMixin):
         self.blinkMode = blinkMode
         self._startBlink()
     
-    def _stopBlink(self) :
-        if self.blinkMode :
-            pygame.time.set_timer(TIMEOUT, 0)
-            
     def _startBlink(self) :
         if self.blinkMode :
             self._blinking = True
             pygame.time.set_timer(TIMEOUT, self.duration)
             self.iterator = self.iterImages()
     
+    def _stopBlink(self) :
+        if self.blinkMode :
+            pygame.time.set_timer(TIMEOUT, 0)
+            
     def iterImages(self) :
         for img in cycle(self.images) :
             yield img