Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tawindow.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2010-02-21 15:45:43 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2010-02-21 15:45:43 (GMT)
commit6688e13e955153924c1919a644ac46e3e3adff6a (patch)
tree87882ed5170471a6bea0d4443ee8e87676c91a01 /tawindow.py
parentdff1f20e0b04084d4a72ef70b31ec9917aada539 (diff)
moving selectors to icons
Diffstat (limited to 'tawindow.py')
-rw-r--r--tawindow.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tawindow.py b/tawindow.py
index b650e31..703c668 100644
--- a/tawindow.py
+++ b/tawindow.py
@@ -457,9 +457,9 @@ class TurtleArtWindow():
svg = SVG()
x, y = 50, 0
for i, name in enumerate(PALETTE_NAMES):
- a = svg_str_to_pixbuf(svg_from_file("%s/images/%soff.svg" % (
+ a = svg_str_to_pixbuf(svg_from_file("%s/icons/%soff.svg" % (
self.path, name)))
- b = svg_str_to_pixbuf(svg_from_file("%s/images/%son.svg" % (
+ b = svg_str_to_pixbuf(svg_from_file("%s/icons/%son.svg" % (
self.path, name)))
self.selector_shapes.append([a,b])
self.selectors.append(Sprite(self.sprite_list, x, y, a))