Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/infopanel.py
diff options
context:
space:
mode:
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):