Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Welcome.py
diff options
context:
space:
mode:
authorNat <natcl@hotmail.com>2007-06-16 06:48:31 (GMT)
committer Nat <natcl@hotmail.com>2007-06-16 06:48:31 (GMT)
commit7408fc00345be5a988c26c4b6f7f31a36580faf5 (patch)
tree4a6d7287e1057ce58ada16234220c717f2ce599b /Welcome.py
parent94e5d8a60e3e4a3e45105e8e9cb12c4e0585ea04 (diff)
Removed the typing game icon
Diffstat (limited to 'Welcome.py')
-rw-r--r--Welcome.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Welcome.py b/Welcome.py
index e595d7d..c2ebc9e 100644
--- a/Welcome.py
+++ b/Welcome.py
@@ -24,13 +24,12 @@ class Welcome(SubActivity):
actVBox = RoundVBox(fillcolor = Config.WS_BCK_COLOR, bordercolor = Config.WS_BCK_COLOR, radius = Config.PANEL_RADIUS)
actHBox = gtk.HBox()
- for activity in ['mini','edit','type','synth']:
+ for activity in ['mini','edit','synth']:
actBtnBox = RoundVBox(fillcolor = Config.WS_PANEL_COLOR, bordercolor = Config.WS_BCK_COLOR, radius = Config.PANEL_RADIUS)
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' )
- if activity != 'type': # temp
- actBtn.connect('clicked', self.onActivityBtnClicked, activity)
+ actBtn.connect('clicked', self.onActivityBtnClicked, activity)
actBtnBox.pack_start(actBtn,True,False,0)
actHBox.pack_start(actBtnBox,True,False,0)