Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-09-25 17:24:40 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-09-25 17:24:40 (GMT)
commitb1354cf7110e72cdfea48ba55d0dbfb6a0aa34ac (patch)
treea69d18cb9ace123f3e043d695250af434aa320f0
parente89c88b191b8013763fb265daf655488309c15e5 (diff)
parentaa71d354b22f50c1f6d4d8fa9353c277fd2374ce (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar
-rw-r--r--shell/view/frame/RightPanel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/view/frame/RightPanel.py b/shell/view/frame/RightPanel.py
index 04f9478..28c81b3 100644
--- a/shell/view/frame/RightPanel.py
+++ b/shell/view/frame/RightPanel.py
@@ -25,7 +25,8 @@ class RightPanel(CanvasBox):
shell.connect('activity-changed', self.__activity_changed_cb)
def add(self, buddy):
- icon = BuddyIcon(self._shell, self._menu_shell, BuddyModel(buddy))
+ model = BuddyModel(buddy=buddy)
+ icon = BuddyIcon(self._shell, self._menu_shell, model)
icon.set_menu_strategy(MenuStrategy())
self.set_constraints(icon, 5, 5)
self.add_child(icon)