Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/infopanel.py
diff options
context:
space:
mode:
authorAndrés Ambrois <andresambrois@gmail.com>2008-07-24 03:00:28 (GMT)
committer Andrés Ambrois <andresambrois@gmail.com>2008-07-24 03:00:28 (GMT)
commitdc08b0a63060a0a2dc03ac414bbad8480baec87f (patch)
tree0ac51416b5184b23a3416aebf18358f9f8512720 /infopanel.py
parent3c0100b1ffce71f123708d9b30f0d2ad90d48b13 (diff)
Added Pass and Undo buttons (not shown yet)
Facilities for passing and undoing moves are not functional yet, so the buttons are not packed.
Diffstat (limited to 'infopanel.py')
-rwxr-xr-xinfopanel.py4
1 files changed, 2 insertions, 2 deletions
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):