From 5640790a28e3dfabb446aada9caa8b28ca306bba Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Fri, 4 Sep 2020 20:27:34 -0400 Subject: [PATCH] Disable the mouse cursor --- turntable/gui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/turntable/gui.py b/turntable/gui.py index ddc118a..861741f 100644 --- a/turntable/gui.py +++ b/turntable/gui.py @@ -89,6 +89,7 @@ def main(): HEIGHT = int(config.get("height", size[1])) FPS = int(config.get("fps", 60)) screen = pygame.display.set_mode((WIDTH, HEIGHT)) + pygame.mouse.set_visible(False) # Clear the screen to start screen.fill((0, 0, 0)) # Initialise font support