Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-05-07 18:38:25 (GMT)
committer Ignacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-05-07 18:38:25 (GMT)
commitbbeaf9102718acc72c48f222b81f54ccb2d6e7ac (patch)
tree0ccad7a3003bca2444c13957a42ac1fb38eff64c
parenta358ff4eb36a762f6c58ba2cde0581890d22ab88 (diff)
Insercción del segundo box.
-rw-r--r--MainPaned.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/MainPaned.py b/MainPaned.py
index 115bfc3..e73ff32 100644
--- a/MainPaned.py
+++ b/MainPaned.py
@@ -6,11 +6,13 @@
from gi.repository import Gtk
from Box1 import Box1
+from Box2 import Box2
class MainPaned(Gtk.HPaned):
def __init__(self):
super(MainPaned, self).__init__()
self.pack1(Box1())
+ self.pack2(Box2())
self.show_all()