Skip to content

Commit

Permalink
fix tests and update kaacore
Browse files Browse the repository at this point in the history
  • Loading branch information
labuzm committed Mar 10, 2020
1 parent 4bb3876 commit 0917523
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demos/physics3/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def update(self, dt):
elif event.mouse_motion:
self.pointer.position = event.mouse_motion.position
elif (
event.mouse_button and event.mouse_button.button() == MouseButton.left
event.mouse_button and event.mouse_button.button == MouseButton.left
):
if event.mouse_button.is_button_down:
self.pointer.color = POINTER_COLOR_ACTIVE
Expand Down

0 comments on commit 0917523

Please sign in to comment.