Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/home/FriendView.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-23 16:08:37 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-23 16:08:37 (GMT)
commita2e5b9308e08637afc3eeb3bd9a6b0634e1b7fe1 (patch)
tree6c946b47fef417bda65d018c04f8faf2914debce /shell/view/home/FriendView.py
parent97e64751cccc3f31dedbd184afc049daf0301afc (diff)
Rename color property in CanvasIcon to xo-color and added properties fill-color and stroke-color.
Diffstat (limited to 'shell/view/home/FriendView.py')
-rw-r--r--shell/view/home/FriendView.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/view/home/FriendView.py b/shell/view/home/FriendView.py
index c84cee5..d0273a7 100644
--- a/shell/view/home/FriendView.py
+++ b/shell/view/home/FriendView.py
@@ -70,7 +70,7 @@ class FriendView(hippo.CanvasBox):
name = self._get_new_icon_name(activity)
if name:
self._activity_icon.props.icon_name = name
- self._activity_icon.props.color = buddy.get_color()
+ self._activity_icon.props.xo_color = buddy.get_color()
if not self._activity_icon_visible:
self.append(self._activity_icon, hippo.PACK_EXPAND)
self._activity_icon_visible = True
@@ -85,4 +85,4 @@ class FriendView(hippo.CanvasBox):
self._buddy_activity_changed_cb(buddy, None)
def _buddy_color_changed_cb(self, buddy, color):
- self._activity_icon.props.color = buddy.get_color()
+ self._activity_icon.props.xo_color = buddy.get_color()