Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tasetup.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-02-20 21:54:51 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-02-20 21:54:51 (GMT)
commit5ea095b022e946ec1c720c2f657a69b5202c04e5 (patch)
tree0f7062a6fcbc8bc2bffd56fd98a63b17b59b4cf9 /tasetup.py
parent612c31e7b64dacc96e14aeec756e7f1443292ab1 (diff)
consolidating redundant svg files
Diffstat (limited to 'tasetup.py')
-rw-r--r--tasetup.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tasetup.py b/tasetup.py
index b9ca78d..0faf26a 100644
--- a/tasetup.py
+++ b/tasetup.py
@@ -240,8 +240,8 @@ def setup_misc(tw):
tw.hidden_palette_icon = load_image(tw.path, '','blocks-')
# media blocks get positioned into other blocks
tw.media_shapes = {}
- tw.media_shapes['audioon'] = load_image(tw.path, 'templates', 'audioon')
- tw.media_shapes['texton'] = load_image(tw.path, 'templates', 'texton')
+ tw.media_shapes['audioon'] = load_image(tw.path, '', 'audioon')
+ tw.media_shapes['texton'] = load_image(tw.path, '', 'texton')
# status shapes get positioned at the bottom of the screen
tw.status_shapes = {}
tw.status_shapes['status'] = load_image(tw.path, '', 'status')
@@ -271,14 +271,14 @@ def setup_selector(tw,name,y,blockdescriptions):
spr.offshape = offshape
spr.onshape = onshape
# print 'setting up selector ' + name
- spr.group = load_image(tw.path, name,name+'group')
- spr.mask = load_image(tw.path, name,name+'mask')
+ spr.group = load_image(tw.path_lang, name,name+'group')
+ spr.mask = load_image(tw.path_lang, name,name+'mask')
spr.type = 'selbutton'
# block prototypes
protos = []
for b in blockdescriptions:
bname,primname,docktype = b[0:3]
- image = load_image(tw.path, name, bname)
+ image = load_image(tw.path_lang, name, bname)
proto = taProto()
proto.name = bname
proto.image = image