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>2008-12-30 16:52:54 (GMT)
committer Wade Brainerd <wadetb@gmail.com>2008-12-30 16:52:54 (GMT)
commitcc20790707b816f860a4cb49afa2e6a692e1c5f5 (patch)
tree603330c1f375ba6afe7815cd5a50e67d26c3a838 /medalscreen.py
parentcb617aa8354633df0b12c561c9b27fcf92e28f30 (diff)
Progress towards release. Working on Shift key support.
Diffstat (limited to 'medalscreen.py')
-rw-r--r--medalscreen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/medalscreen.py b/medalscreen.py
index a361c9e..cbb86ba 100644
--- a/medalscreen.py
+++ b/medalscreen.py
@@ -53,13 +53,13 @@ class MedalScreen(gtk.EventBox):
statbox.pack_start(accuracylabel, True)
oklabel = gtk.Label()
- oklabel.set_markup("<span size='10000'>" + _('Go Back') + '</span>')
- okbtn = gtk.Button()
+ oklabel.set_markup("<span size='10000'>" + _('Ok') + '</span>')
+ okbtn = gtk.Button()
okbtn.add(oklabel)
okbtn.connect('clicked', self.ok_cb)
btnbox = gtk.HBox()
- btnbox.pack_start(okbtn, True, False)
+ btnbox.pack_start(okbtn, True, True, 100)
vbox = gtk.VBox()