Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Welcome.py
diff options
context:
space:
mode:
authoramartin <olpc@localhost.localdomain>2007-02-28 01:49:05 (GMT)
committer amartin <olpc@localhost.localdomain>2007-02-28 01:49:05 (GMT)
commitf13c4a01e1f26888c4f682a5a3332f226a0de58a (patch)
tree3646743fd559ba88739c3313274c90b454b05211 /Welcome.py
parent63896fe4894554d4ed3f769c62755d88bee3f201 (diff)
disable typing game button
Diffstat (limited to 'Welcome.py')
-rw-r--r--Welcome.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Welcome.py b/Welcome.py
index c01543b..2b22281 100644
--- a/Welcome.py
+++ b/Welcome.py
@@ -25,7 +25,8 @@ class Welcome(SubActivity):
actBtnBox.set_size_request(200,200)
actBtnBox.set_border_width(Config.PANEL_SPACING)
actBtn = ImageButton(Config.IMAGE_ROOT + activity +'Tam.png' , Config.IMAGE_ROOT + activity +'TamDown.png', Config.IMAGE_ROOT + activity +'TamOver.png' )
- actBtn.connect('clicked', self.onActivityBtnClicked, activity)
+ if activity != 'type': # temp
+ actBtn.connect('clicked', self.onActivityBtnClicked, activity)
actBtnBox.pack_start(actBtn,True,False,0)
actHBox.pack_start(actBtnBox,True,False,0)