From bbeaf9102718acc72c48f222b81f54ccb2d6e7ac Mon Sep 17 00:00:00 2001 From: Ignacio Rodríguez Date: Tue, 07 May 2013 18:38:25 +0000 Subject: Insercción del segundo box. --- 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() -- cgit v0.9.1