Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorReinier Heeres <reinier@heeres.eu>2007-12-18 12:43:34 (GMT)
committer Reinier Heeres <rwh@rwh.(none)>2007-12-18 13:00:54 (GMT)
commit87fc2bd27ce1eb67e8138445bf3eba24d08d4927 (patch)
tree968214c0214d69f6cd8f4c31340946b542cf0824 /shell
parent524efd6dc40460275e1e2a59f1779c600e336481 (diff)
Allow activity up- and downgrades #4906, also fix #5382
Diffstat (limited to 'shell')
-rw-r--r--shell/view/frame/activitiestray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/view/frame/activitiestray.py b/shell/view/frame/activitiestray.py
index 6f8e89e..3dbf955 100644
--- a/shell/view/frame/activitiestray.py
+++ b/shell/view/frame/activitiestray.py
@@ -129,7 +129,7 @@ class ActivitiesTray(hippo.CanvasBox):
def _activity_removed_cb(self, activity_registry, activity_info):
for item in self._tray.get_children():
- if item.get_bundle_id() == activity_info.service_name:
+ if item.get_bundle_id() == activity_info.bundle_id:
self._tray.remove_item(item)
return