Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/montage.py
diff options
context:
space:
mode:
Diffstat (limited to 'montage.py')
-rw-r--r--montage.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/montage.py b/montage.py
index 4769969..a194212 100644
--- a/montage.py
+++ b/montage.py
@@ -116,7 +116,8 @@ class View(gtk.EventBox):
return combo
- self.controlbox.pack_start(new_combo(char.THEMES, self._char_cb),
+ self._char_combo = new_combo(char.THEMES, self._char_cb)
+ self.controlbox.pack_start(self._char_combo,
False, False)
self._ground_combo = new_combo(ground.THEMES, self._combo_cb,
Document.ground, self._ground_cb)
@@ -188,6 +189,7 @@ class View(gtk.EventBox):
frames_box.pack_start(yellow_frames, True, True)
frames_box.pack_start(yelow_arrow, False, False)
frames_box.props.border_width = theme.BORDER_WIDTH
+ self.right_panel = frames_box
# screen
@@ -245,6 +247,7 @@ class View(gtk.EventBox):
leftbox.set_size_request(logo.props.pixbuf.get_width(), -1)
leftbox.pack_start(logo, False, False)
leftbox.pack_start(self.controlbox, True, True)
+ self.left_panel = leftbox
# screen box
@@ -283,6 +286,7 @@ class View(gtk.EventBox):
tape_box.props.border_width = theme.BORDER_WIDTH
tape_box.pack_start(arrow, False, False)
tape_box.pack_start(tape_hbox)
+ self.bottom_panel = tape_box
desktop = gtk.VBox()
desktop.pack_start(hdesktop, True, True, 0)