Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.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 /activity.py
parent18dd7bfbad958410c5c9a88fd012e9b003b40403 (diff)
Added spacing between the labels
Diffstat (limited to 'activity.py')
-rwxr-xr-xactivity.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/activity.py b/activity.py
index d2d249b..204664c 100755
--- a/activity.py
+++ b/activity.py
@@ -53,7 +53,7 @@ class PlayGo(Activity):
self._main_view = gtk.HBox()
#Prepare the left box
- self.left_view = gtk.VBox()
+ self.left_view = gtk.VBox(False)
self.left_view.pack_start(self.boardWidget)
self.info_panel = InfoPanel()
self.left_view.pack_start(self.info_panel, False)
@@ -63,7 +63,6 @@ class PlayGo(Activity):
#Prepare the right view
self.right_view = gtk.VBox()
- self.right_view.pack_start(gtk.Label('Aca va el coso'), False)
#Pack the right view
self._main_view.pack_end(self.right_view, False)