Use xo colors in clipboard icons.

This commit is contained in:
Tomeu Vizoso 2007-06-23 20:07:25 +02:00
parent e894c8a2e4
commit 6af3c44893

View File

@ -57,6 +57,7 @@ class ClipboardIcon(CanvasIcon):
self.props.box_width = units.grid_to_pixels(1) self.props.box_width = units.grid_to_pixels(1)
self.props.box_height = units.grid_to_pixels(1) self.props.box_height = units.grid_to_pixels(1)
self.props.scale = units.STANDARD_ICON_SCALE self.props.scale = units.STANDARD_ICON_SCALE
self.props.xo_color = XoColor(profile.get_color().to_string())
self._menu = None self._menu = None
def do_set_property(self, pspec, value): def do_set_property(self, pspec, value):
@ -113,7 +114,7 @@ class ClipboardIcon(CanvasIcon):
if (activity or installable) and percent < 100: if (activity or installable) and percent < 100:
self.props.xo_color = XoColor("#000000,#424242") self.props.xo_color = XoColor("#000000,#424242")
else: else:
self.props.xo_color = XoColor("#000000,#FFFFFF") self.props.xo_color = XoColor(profile.get_color().to_string())
def _open_file(self): def _open_file(self):
if self._percent < 100: if self._percent < 100: