From b42cab93f90760eaf3f8aac01c2ab41c1a5b1176 Mon Sep 17 00:00:00 2001 From: rcoh Date: Sat, 29 Jan 2011 19:36:39 -0500 Subject: Fixed a bug that was causing us to drop clicks. --- inputs/PygameInput.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'inputs') diff --git a/inputs/PygameInput.py b/inputs/PygameInput.py index 414adf3..480630c 100644 --- a/inputs/PygameInput.py +++ b/inputs/PygameInput.py @@ -33,3 +33,5 @@ class PygameInput(Input): if event.type is MOUSEBUTTONDOWN: if self['Clicks']: self.respond({Strings.LOCATION: pygame.mouse.get_pos()}) + else: + pygame.event.post(event) -- cgit v1.2.3