From e93433b98bfcf90eb5da5f6abf8804819b20c2fb Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Thu, 28 May 2015 22:22:46 +0200 Subject: [PATCH] showing mouse cursor for debug --- photobooth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photobooth.py b/photobooth.py index 3ad2001..c424e06 100755 --- a/photobooth.py +++ b/photobooth.py @@ -78,7 +78,7 @@ class GUI_PyGame: # Window name pygame.display.set_caption(name) # Hide mouse cursor - pygame.mouse.set_visible(False) + #pygame.mouse.set_visible(False) # Store screen and size self.size = size self.screen = pygame.display.set_mode(self.size, pygame.FULLSCREEN)