From e8a21bf6a03dd70524ada386a105f8260e994a15 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Fri, 16 Mar 2007 11:53:22 +0100 Subject: [PATCH] Use color.HTMLColor instead of the color string. --- shell/view/home/MeshBox.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell/view/home/MeshBox.py b/shell/view/home/MeshBox.py index 6af48d62..b6a6d85c 100644 --- a/shell/view/home/MeshBox.py +++ b/shell/view/home/MeshBox.py @@ -55,7 +55,9 @@ class AccessPointView(PulsingIcon): self.props.colors = [ [ None, None ], - [ self._inactive_stroke_color, self._inactive_fill_color ] + [ color.HTMLColor(self._inactive_stroke_color), + color.HTMLColor(self._inactive_fill_color) + ] ] self._update_icon()