Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-03-02 22:52:53 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-03-02 22:52:53 (GMT)
commit7c55004f97f2032911d47384e85c759372911cff (patch)
treed0ab18bbf03bec51e8fd391b3667119448ad88d4 /TurtleArt
parente593d0713080ebe9e65f2bb336355d3d45a34fc3 (diff)
removed 'see' from value blocks list
Diffstat (limited to 'TurtleArt')
-rw-r--r--TurtleArt/tabasics.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/TurtleArt/tabasics.py b/TurtleArt/tabasics.py
index fd26209..14ea499 100644
--- a/TurtleArt/tabasics.py
+++ b/TurtleArt/tabasics.py
@@ -53,7 +53,7 @@ Adding a new palette is simply a matter of:
You will have to create icons for the palette-selector buttons. These
are kept in the icons subdirectory. You need two icons:
-mypaletteoff.svg and yourpaletteon.svg, where mypalette is the same
+mypaletteoff.svg and mypaletteon.svg, where 'mypalette' is the same
string as the entry you used in instantiating the Palette class. Note
that the icons should be the same size (55x55) as the others. (This is
the default icon size for Sugar toolbars.)
@@ -852,8 +852,6 @@ operators from Numbers palette'))
self.tw.lc.update_label_value(
'ycor', self.tw.canvas.ycor / self.tw.coord_scale)
self.tw.lc.update_label_value('heading', self.tw.canvas.heading)
- if len(self.lc.tw.value_blocks['see']) > 0:
- self.lc.tw.see()
def _prim_box(self, x):
""" Retrieve value from named box """
@@ -902,8 +900,6 @@ operators from Numbers palette'))
self.tw.canvas.xcor / self.tw.coord_scale)
self.tw.lc.update_label_value('ycor',
self.tw.canvas.ycor / self.tw.coord_scale)
- if len(self.tw.lc.value_blocks['see']) > 0:
- self.tw.lc.see()
def _prim_repeat(self, num, blklist):
""" Repeat list num times. """