Skip to content
Snippets Groups Projects
Verified Commit 7ed27584 authored by TheJoeCoder's avatar TheJoeCoder
Browse files

Allow hiding mouse

parent 1a001de2
Branches
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@ PROP_SCREEN_HEIGHT = 280
PROP_WINDOW_FULLSCREEN = False
PROP_HIDE_MOUSE = False
# Make the window scale larger for development
PROP_WINDOW_SCALE = 3
......
......@@ -121,6 +121,7 @@ def run_screen():
pg_options
)
pygame.display.set_caption("Clock")
pygame.mouse.set_visible(not PROP_HIDE_MOUSE)
# Init widgets
widget_to_load = PROP_AVAILABLE_WIDGETS[0] # TODO change to load multiple widgets
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment