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-09-18 16:27:20 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-09-18 16:27:20 (GMT)
commiteafb5ae741681d8eb4f091721735f6ccf1b951f2 (patch)
tree0c5e9e89bd805c30d4ff8e7c797185200d795062 /tasetup.py
parent18492832959aadd494f9f4c897c92963d6757b73 (diff)
merge of walters-clone
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 34fcd8c..e6799f7 100644
--- a/tasetup.py
+++ b/tasetup.py
@@ -106,8 +106,6 @@ selectors = (
('keyboard','keyboard','num'),
('nop','userdefined','onearg',100),
('myfunc','myfunc','myfunc',_('x'),100),
- ('hres','hres','num'),
- ('vres','vres','num'),
('push','push','onearg'),
('pop','pop','num'),
('printheap','heap','noarg2'),
@@ -115,9 +113,11 @@ selectors = (
('leftpos','leftpos','num'),
('toppos','toppos','num'),
('rightpos','rightpos','num'),
- ('bottompos','bottompos','num'))),
+ ('bottompos','bottompos','num'),
+ ('hres','hres','num'),
+ ('vres','vres','num'))),
('flow', 55,
- (('wait','wait','onearg',10),
+ (('wait','wait','onearg',1),
('forever','forever','forever'),
('repeat','repeat','repeat',4),
('if','if','if'),
@@ -347,7 +347,7 @@ def load_image(path, dir, file):
return gtk.gdk.pixbuf_new_from_file(os.path.join(datapath, file+'.png'))
except:
try:
- print "trying ... " + os.path.join(path, dir, file+'.png')
+ # print "trying ... " + os.path.join(path, dir, file+'.png')
return gtk.gdk.pixbuf_new_from_file(os.path.join(path, \
dir, \
file+'.png'))