Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-21 14:54:36 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-21 14:54:36 (GMT)
commit3df75e4c6e05ef6d4b5663b6f2755407264355f8 (patch)
tree32c6973dd7b5d5c5d05f1f1625508b78111fc7f9 /shell
parent2be1cdbab3dcb3a174385ed2b4f7a825343324de (diff)
Renamed XO icon from xo to computer-xo.
Diffstat (limited to 'shell')
-rw-r--r--shell/intro/colorpicker.py2
-rw-r--r--shell/view/BuddyIcon.py2
-rw-r--r--shell/view/home/MyIcon.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/shell/intro/colorpicker.py b/shell/intro/colorpicker.py
index d70d84c..f418807 100644
--- a/shell/intro/colorpicker.py
+++ b/shell/intro/colorpicker.py
@@ -26,7 +26,7 @@ class ColorPicker(hippo.CanvasBox, hippo.CanvasItem):
self.props.orientation = hippo.ORIENTATION_HORIZONTAL
self._xo = CanvasIcon(size=style.XLARGE_ICON_SIZE,
- icon_name='theme:xo')
+ icon_name='theme:computer-xo')
self._set_random_colors()
self._xo.connect('activated', self._xo_activated_cb)
self.append(self._xo)
diff --git a/shell/view/BuddyIcon.py b/shell/view/BuddyIcon.py
index f16b71c..5079fe5 100644
--- a/shell/view/BuddyIcon.py
+++ b/shell/view/BuddyIcon.py
@@ -20,7 +20,7 @@ from view.BuddyMenu import BuddyMenu
class BuddyIcon(CanvasIcon):
def __init__(self, shell, buddy):
- CanvasIcon.__init__(self, icon_name='theme:xo',
+ CanvasIcon.__init__(self, icon_name='theme:computer-xo',
xo_color=buddy.get_color())
self._shell = shell
diff --git a/shell/view/home/MyIcon.py b/shell/view/home/MyIcon.py
index f4013b9..894bd83 100644
--- a/shell/view/home/MyIcon.py
+++ b/shell/view/home/MyIcon.py
@@ -20,5 +20,5 @@ from sugar import profile
class MyIcon(CanvasIcon):
def __init__(self, size):
CanvasIcon.__init__(self, size=size,
- icon_name='theme:xo',
+ icon_name='theme:computer-xo',
xo_color=profile.get_color())