Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-11-03 15:11:59 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-11-03 15:11:59 (GMT)
commit00026fb5efd90b6a0a27ecd8709bd9cad7e8ea4e (patch)
tree91a2fbe77c154cc14a243ee73ef062e3a964751a
parentda3c550bfd935fcdf18c04c021b3ff0cd33e13b3 (diff)
Check if we should show the launcher
-rw-r--r--shell/view/frame/ActivitiesBox.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/view/frame/ActivitiesBox.py b/shell/view/frame/ActivitiesBox.py
index 06f102c..003c7d3 100644
--- a/shell/view/frame/ActivitiesBox.py
+++ b/shell/view/frame/ActivitiesBox.py
@@ -65,7 +65,8 @@ class ActivitiesBox(hippo.CanvasBox):
self.add_activity(activity)
for bundle in self._shell_model.get_bundle_registry():
- self.add_activity(bundle)
+ if bundle.get_show_launcher():
+ self.add_activity(bundle)
for invite in self._invites:
self.add_invite(invite)