Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-09-26 17:35:58 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-09-26 17:35:58 (GMT)
commit4975e94a8449341145c951f572ce13234f08640c (patch)
treecb9cffd3951dac359b38828da2b7dcfa125bddc7 /shell
parentfa31b7c0bdb701886419c84b292803b19a077322 (diff)
Update some icon names
Diffstat (limited to 'shell')
-rw-r--r--shell/view/BuddyMenu.py7
-rw-r--r--shell/view/frame/TopPanel.py4
2 files changed, 4 insertions, 7 deletions
diff --git a/shell/view/BuddyMenu.py b/shell/view/BuddyMenu.py
index 6b26295..4ad7857 100644
--- a/shell/view/BuddyMenu.py
+++ b/shell/view/BuddyMenu.py
@@ -53,15 +53,12 @@ class BuddyMenu(Menu):
friends = shell_model.get_friends()
if friends.has_buddy(self._buddy):
- icon = IconItem(icon_name='stock-remove-friend')
+ icon = IconItem(icon_name='stock-add')
self.add_action(icon, BuddyMenu.ACTION_REMOVE_FRIEND)
else:
- icon = IconItem(icon_name='stock-make-friend')
+ icon = IconItem(icon_name='stock-remove')
self.add_action(icon, BuddyMenu.ACTION_MAKE_FRIEND)
- icon = IconItem(icon_name='stock-chat')
- self.add_action(icon, -1)
-
activity_id = shell_model.get_current_activity()
if activity_id != None:
activity_ps = pservice.get_activity(activity_id)
diff --git a/shell/view/frame/TopPanel.py b/shell/view/frame/TopPanel.py
index 5516bb5..e0aec2e 100644
--- a/shell/view/frame/TopPanel.py
+++ b/shell/view/frame/TopPanel.py
@@ -15,10 +15,10 @@ class ActivityMenu(Menu):
title = activity_host.get_title()
Menu.__init__(self, grid, title)
- icon = IconItem(icon_name='stock-share')
+ icon = IconItem(icon_name='stock-share-mesh')
self.add_action(icon, ActivityMenu.ACTION_SHARE)
- icon = IconItem(icon_name='stock-close-activity')
+ icon = IconItem(icon_name='stock-close')
self.add_action(icon, ActivityMenu.ACTION_CLOSE)
class ActivityIcon(MenuIcon):