Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristhofer Travieso <cristhofert97@gmail.com>2012-06-28 21:42:15 (GMT)
committer Cristhofer Travieso <cristhofert97@gmail.com>2012-06-28 21:42:15 (GMT)
commit69dde2bb16da76ad2b9824fa7c205a1d85845cb4 (patch)
tree20d379a5990653c9cea0bb5837d9bffbcb5ef0aa
parentb6204403b423cba05823f7ba4a09d506e942e4ab (diff)
Ordene mas pack_start
-rw-r--r--Activity.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Activity.py b/Activity.py
index 8fd5bff..16e6ec6 100644
--- a/Activity.py
+++ b/Activity.py
@@ -107,7 +107,10 @@ class Canvas(gtk.VBox):
gtk.VBox.__init__(self)
self._hbox1 = gtk.HBox()
+ self.pack_start(self._hbox1, False)
self._hbox2 = gtk.HBox()
+ self.pack_start(self._hbox2, False)
+
self._hbox1.pack_start(gtk.Label("Of "), True)
self.combo1 = gtk.ComboBox()
self._hbox1.pack_start(self.combo1, True)
@@ -132,6 +135,4 @@ class Canvas(gtk.VBox):
self.separator2.set_draw(False)
self._hbox2.pack_start(self.separator2, True)
- self.pack_start(self._hbox1, False)
- self.pack_start(self._hbox2, False)
self.show_all()