Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/medalscreen.py
diff options
context:
space:
mode:
authorWade Brainerd <wadetb@gmail.com>2009-01-26 01:38:16 (GMT)
committer Wade Brainerd <wadetb@gmail.com>2009-01-26 01:38:16 (GMT)
commit53f526ff1cde03e605d5b8666ae801f9dbab8fc6 (patch)
tree88dc9e8bb398cfbea7eb0ac54176220f76244f6c /medalscreen.py
parentfb0c2407556aa277601f3ba56714f7248b81998d (diff)
Balloon game, lesson builder improvements.
Diffstat (limited to 'medalscreen.py')
-rw-r--r--medalscreen.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/medalscreen.py b/medalscreen.py
index cbb86ba..c73b078 100644
--- a/medalscreen.py
+++ b/medalscreen.py
@@ -53,11 +53,12 @@ class MedalScreen(gtk.EventBox):
statbox.pack_start(accuracylabel, True)
oklabel = gtk.Label()
- oklabel.set_markup("<span size='10000'>" + _('Ok') + '</span>')
+ oklabel.set_markup("<span size='10000'>" + _('Press the ENTER key to continue.') + '</span>')
okbtn = gtk.Button()
okbtn.add(oklabel)
okbtn.connect('clicked', self.ok_cb)
-
+ okbtn.grab_focus()
+
btnbox = gtk.HBox()
btnbox.pack_start(okbtn, True, True, 100)