changeset 508:91ee6107a216

Remove debugging print
author Neil Muller <neil@dip.sun.ac.za>
date Fri, 03 Sep 2010 14:39:44 +0200
parents caec319a4ae3
children 616334ea5e8c
files tools/rect_drawer.py
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/rect_drawer.py	Fri Sep 03 11:51:43 2010 +0200
+++ b/tools/rect_drawer.py	Fri Sep 03 14:39:44 2010 +0200
@@ -344,7 +344,6 @@
         offset = [zoom_pos[0] - constants.SCREEN[0] / 2,
                 zoom_pos[1] - constants.SCREEN[1] / 2]
         self._check_limits(offset)
-        print offset
         self.zoom_offset = tuple(offset)
 
     def _move_zoom(self, x, y):
@@ -352,7 +351,6 @@
         offset[0] += ZOOM_STEP * x
         offset[1] += ZOOM_STEP * y
         self._check_limits(offset)
-        print offset
         self.zoom_offset = tuple(offset)
 
     def do_mouse_move(self, e):