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-23 23:28:09 (GMT)
committer Andrés Ambrois <andresambrois@gmail.com>2008-07-23 23:28:09 (GMT)
commit3c0100b1ffce71f123708d9b30f0d2ad90d48b13 (patch)
treec25113e663cb1777327036459b9ea3ac4c3d8738 /infopanel.py
parent18dd7bfbad958410c5c9a88fd012e9b003b40403 (diff)
Added spacing between the labels
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 36f8ab4..557a175 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)
+ self.pack_start(self.status_label, False, True, 10)
self.score_label = gtk.Label('Score')
- self.pack_start(self.score_label, False)
+ self.pack_start(self.score_label, False, True, 10)
self.show_all()
def show(self, text):