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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/MainPaned.py b/MainPaned.py
index e73ff32..5cddc0a 100644
--- a/MainPaned.py
+++ b/MainPaned.py
@@ -9,10 +9,10 @@ from Box1 import Box1
from Box2 import Box2
class MainPaned(Gtk.HPaned):
- def __init__(self):
+ def __init__(self, toolbar):
super(MainPaned, self).__init__()
self.pack1(Box1())
- self.pack2(Box2())
+ self.pack2(Box2(toolbar))
self.show_all()