From cb66d524aabb677a7c6beb345ded2054ff481b95 Mon Sep 17 00:00:00 2001 From: Christopher Denter Date: Sun, 30 Jan 2011 18:08:43 +0100 Subject: [PATCH] mactouch: Disable two debug prints --- kivy/input/providers/mactouch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy/input/providers/mactouch.py b/kivy/input/providers/mactouch.py index fcc1315c1..dbd5e4080 100644 --- a/kivy/input/providers/mactouch.py +++ b/kivy/input/providers/mactouch.py @@ -131,10 +131,10 @@ class MacMotionEventProvider(MotionEventProvider): # ok, listing devices, and attach ! devices = MultitouchSupport.MTDeviceCreateList() num_devices = CFArrayGetCount(devices) - print 'num_devices =', num_devices + # print 'num_devices =', num_devices for i in xrange(num_devices): device = CFArrayGetValueAtIndex(devices, i) - print 'device #%d: %016x' % (i, device) + # print 'device #%d: %016x' % (i, device) # create touch dict for this device data_id = str(device) self.touches[data_id] = {}