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-08-27 13:53:26 (GMT)
committer Gary Martin <gary@garycmartin.com>2009-08-27 13:53:26 (GMT)
commit966c461dea92f4899f3020f41d05deb170e5676d (patch)
tree9012ad60ac165fb88a2d980b688cbb0b97704413
parent2595c0520fdb4a93c7537c96824ae3eaaa546c78 (diff)
Make tool default shapes a little smaller.
-rw-r--r--tools.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools.py b/tools.py
index c768da2..ae32ece 100644
--- a/tools.py
+++ b/tools.py
@@ -65,7 +65,7 @@ class CircleTool(Tool):
self.game = gameInstance
self.name = 'Circle'
self.pt1 = None
- self.radius = 50
+ self.radius = 40
def handleEvents(self,event):
#look for default events, and if none are handled then try the custom events
if not super(CircleTool,self).handleEvents(event):
@@ -104,8 +104,8 @@ class BoxTool(Tool):
self.name = 'Box'
self.pt1 = None
self.rect = None
- self.width = 100
- self.height = 100
+ self.width = 80
+ self.height = 80
def handleEvents(self,event):
#look for default events, and if none are handled then try the custom events
if not super(BoxTool,self).handleEvents(event):
@@ -148,7 +148,7 @@ class TriangleTool(Tool):
self.name = 'Triangle'
self.pt1 = None
self.vertices = None
- self.line_delta = [0, -100]
+ self.line_delta = [0, -80]
def handleEvents(self,event):
#look for default events, and if none are handled then try the custom events
if not super(TriangleTool,self).handleEvents(event):