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