Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/home
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-28 19:25:04 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-28 19:25:04 (GMT)
commit94d624e26c94a8a763f56f6916078bb860608731 (patch)
tree9788e39c7655b9d774f30f5357a72618f6f579c8 /shell/view/home
parent0dbb456a5aecffc2db52c1ce8b0ce3792b7893f0 (diff)
Some more icon fixes.
Diffstat (limited to 'shell/view/home')
-rw-r--r--shell/view/home/MeshBox.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/shell/view/home/MeshBox.py b/shell/view/home/MeshBox.py
index e3f0c0f..4d6bde4 100644
--- a/shell/view/home/MeshBox.py
+++ b/shell/view/home/MeshBox.py
@@ -145,24 +145,24 @@ class MeshDeviceView(PulsingIcon):
if state == nmclient.DEVICE_STATE_ACTIVATING:
self.props.pulse_time = 0.75
self.props.colors = [
- [ style.Color(self._device_stroke),
- style.Color(self._device_fill) ],
- [ style.Color(self._device_stroke),
- style.Color('#e2e2e2') ]
+ [ style.Color(self._device_stroke).get_svg(),
+ style.Color(self._device_fill).get_svg() ],
+ [ style.Color(self._device_stroke).get_svg(),
+ '#e2e2e2' ]
]
elif state == nmclient.DEVICE_STATE_ACTIVATED:
self.props.pulse_time = 1.5
self.props.colors = [
- [ style.Color(self._device_stroke),
- style.Color(self._device_fill) ],
- [ style.Color('#ffffff'),
- style.Color(self._device_fill) ]
+ [ style.Color(self._device_stroke).get_svg(),
+ style.Color(self._device_fill).get_svg() ],
+ [ '#ffffff',
+ style.Color(self._device_fill).get_svg() ]
]
elif state == nmclient.DEVICE_STATE_INACTIVE:
self.props.pulse_time = 0.0
self.props.colors = [
- [ style.Color(self._device_stroke),
- style.Color(self._device_fill) ]
+ [ style.Color(self._device_stroke).get_svg(),
+ style.Color(self._device_fill).get_svg() ]
]
class ActivityView(hippo.CanvasBox):