Skip to content

Commit 6152664

Browse files
committed
Remove debug print statements in GestureEventMatch class
1 parent fb067fd commit 6152664

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

plotpy/events.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -300,13 +300,8 @@ def get_event_types(self):
300300
return frozenset((self.evt_type,))
301301

302302
def __call__(self, event):
303-
# print(event)
304303
if event.type() == QC.QEvent.Gesture:
305-
# print(event.gestures()[0].gestureType())
306304
gesture = event.gesture(self.gesture_type)
307-
# print(gesture)
308-
if gesture:
309-
print(gesture.hotSpot(), self.__get_state_str(gesture.state()))
310305
return gesture and gesture.state() == self.gesture_state
311306
return False
312307

0 commit comments

Comments
 (0)