diff --git a/photobooth.py b/photobooth.py index 16c1d13..9747e5d 100755 --- a/photobooth.py +++ b/photobooth.py @@ -136,6 +136,7 @@ class GUI_PyGame: if event.type == pygame.QUIT: return elif event.type == pygame.KEYDOWN: handle_keypress(event.key) elif event.type == pygame.MOUSEBUTTONDOWN: handle_mousebutton(event.button, event.pos) + elif event.type == pygame.MOUSEBUTTONUP: handle_mousebutton(event.button, event.pos) # Ignore all input that happened inbetween pygame.event.clear()