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 <reinier@heeres.eu>2007-12-18 12:43:34 (GMT)
commitd35c19b6aaeb79df700bf063f4bf3d298c20bf7a (patch)
tree24c78ed32e5c4c7ceb4461914d1b808345c09d78 /shell
parentb57ff156f7b1125e37c8295c7bb4984a84f7de7f (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