From dc08b0a63060a0a2dc03ac414bbad8480baec87f Mon Sep 17 00:00:00 2001 From: Andrés Ambrois Date: Thu, 24 Jul 2008 03:00:28 +0000 Subject: Added Pass and Undo buttons (not shown yet) Facilities for passing and undoing moves are not functional yet, so the buttons are not packed. --- (limited to 'infopanel.py') diff --git a/infopanel.py b/infopanel.py index 557a175..783c111 100755 --- a/infopanel.py +++ b/infopanel.py @@ -6,9 +6,9 @@ class InfoPanel(gtk.VBox): def __init__(self): gtk.VBox.__init__(self) self.status_label = gtk.Label('Status') - self.pack_start(self.status_label, False, True, 10) + self.pack_start(self.status_label, True, True, 10) self.score_label = gtk.Label('Score') - self.pack_start(self.score_label, False, True, 10) + self.pack_start(self.score_label, True, True, 10) self.show_all() def show(self, text): -- cgit v0.9.1