From 48d1736bcf8b0bc376bdbdc00498ddbe64a41cd3 Mon Sep 17 00:00:00 2001 From: nickedyer Date: Sun, 19 Feb 2023 14:37:27 -0500 Subject: [PATCH] hide the cursor --- colors/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/main.py b/colors/main.py index 2dd6fd9..2eaa22b 100644 --- a/colors/main.py +++ b/colors/main.py @@ -19,6 +19,8 @@ def main(): while running: clock.tick(60) + pygame.mouse.set_visible(False) + for keyboard_event in pygame.event.get(): if keyboard_event.type == pygame.QUIT: running = False