Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Area.py
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@sugarlabs.org>2011-02-08 12:52:01 (GMT)
committer Gonzalo Odiard <godiard@sugarlabs.org>2011-02-08 12:52:01 (GMT)
commitfa55888e3d4ff13e309eb381f393db31a61203e8 (patch)
treed3ae3f87b079ae3f0572ebd57d063feec5cba769 /Area.py
parent5e6664369b79db91a4db97c921ac496b8c10d3ca (diff)
Set the default number of vertices in the polygon tool to 6 - OLPC #10554
That is to be coherent with the icon in the toolbar.
Diffstat (limited to 'Area.py')
-rw-r--r--Area.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Area.py b/Area.py
index f0bbf2a..92f3f29 100644
--- a/Area.py
+++ b/Area.py
@@ -195,7 +195,7 @@ class Area(gtk.DrawingArea):
self.undo_list = []
##Number of sides for regular polygon
- self.vertices = 5
+ self.vertices = 6
##Shapes will be filled or not?
self.fill = True