restricted mouse events to BUTTONUP
This commit is contained in:
@@ -135,12 +135,7 @@ class GUI_PyGame:
|
|||||||
# Handle the event
|
# Handle the event
|
||||||
if event.type == pygame.QUIT: return
|
if event.type == pygame.QUIT: return
|
||||||
elif event.type == pygame.KEYDOWN: handle_keypress(event.key)
|
elif event.type == pygame.KEYDOWN: handle_keypress(event.key)
|
||||||
elif event.type == pygame.MOUSEBUTTONDOWN:
|
elif event.type == pygame.MOUSEBUTTONUP: handle_mousebutton(event.button, event.pos)
|
||||||
print("MOUSEBUTTONDOWN")
|
|
||||||
handle_mousebutton(event.button, event.pos)
|
|
||||||
elif event.type == pygame.MOUSEBUTTONUP:
|
|
||||||
print("MOUSEBUTTONUP")
|
|
||||||
handle_mousebutton(event.button, event.pos)
|
|
||||||
# Ignore all input that happened inbetween
|
# Ignore all input that happened inbetween
|
||||||
pygame.event.clear()
|
pygame.event.clear()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user