Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/Frame.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/frame/Frame.py')
-rw-r--r--shell/view/frame/Frame.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/shell/view/frame/Frame.py b/shell/view/frame/Frame.py
index 9b43fd1..38f0c68 100644
--- a/shell/view/frame/Frame.py
+++ b/shell/view/frame/Frame.py
@@ -5,6 +5,7 @@ import wnck
from view.frame.ActivitiesBox import ActivitiesBox
from view.frame.ZoomBox import ZoomBox
+from view.frame.FriendsBox import FriendsBox
from view.frame.PanelWindow import PanelWindow
from sugar.graphics.timeline import Timeline
from sugar.graphics.menushell import MenuShell
@@ -143,10 +144,13 @@ class Frame:
[x, y] = grid.point(1, 0)
bottom_panel.move(box, x, y)
- left_panel = self._create_panel(grid, 0, 1, 1, 10)
-
right_panel = self._create_panel(grid, 15, 1, 1, 10)
+ box = FriendsBox(self._shell, self._menu_shell)
+ right_panel.append(box)
+
+ left_panel = self._create_panel(grid, 0, 1, 1, 10)
+
def _create_panel(self, grid, x, y, width, height):
panel = PanelWindow()