Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tawindow.py
diff options
context:
space:
mode:
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))