From d853520ea8d5c1ee1ee70133f1dbf9d8369a64db Mon Sep 17 00:00:00 2001 From: Brian Date: Thu, 10 Jul 2008 00:55:50 +0000 Subject: ToolButtons --> RadioToolButtons --- (limited to 'physics.py') diff --git a/physics.py b/physics.py index 706f0d5..ecbab80 100644 --- a/physics.py +++ b/physics.py @@ -84,10 +84,11 @@ class PhysicsGame: def main(): toolbarheight = 75 + tabheight = 30 pygame.init() pygame.display.init() x,y = pygame.display.list_modes()[0] - screen = pygame.display.set_mode((x,y-toolbarheight)) + screen = pygame.display.set_mode((x,y-toolbarheight-tabheight)) # create an instance of the game game = PhysicsGame(screen) # start the main loop -- cgit v0.9.1