Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2009-06-16 01:04:30 (GMT)
committer Gary Martin <gary@garycmartin.com>2009-06-16 01:04:30 (GMT)
commit6a3baf92ac8b19e909a69cbea7d6611fc0343aef (patch)
tree232849bd4996e962623d80f84e9d729678f5d97b
parent9c177f90b6dca2deac4cec4b49972cf96aaaa0d1 (diff)
Removed text (printed white on white canvas!) now toolbar correctly displays state :-)
-rw-r--r--physics.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/physics.py b/physics.py
index 4615117..4e43d46 100644
--- a/physics.py
+++ b/physics.py
@@ -59,12 +59,7 @@ class PhysicsGame:
# draw output from tools
self.currentTool.draw()
-
- #Print all the text on the screen
- text = self.font.render("Current Tool: "+self.currentTool.name, True, (255,255,255))
- textpos = text.get_rect(left=700,top=7)
- self.screen.blit(text,textpos)
-
+
# Flip Display
pygame.display.flip()