Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReinier Heeres <rwh@rwh.(none)>2007-12-09 09:01:02 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-12-15 18:35:41 (GMT)
commite35e5ad326173958707afa406a701670c64490ff (patch)
tree67a9c2c7c35d2c0e38d4869b5494c894455715f8
parentebb5cbf97d44184d4c251aca8cbda12c12b14100 (diff)
Change resume icon color, #4326
-rw-r--r--collapsedentry.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/collapsedentry.py b/collapsedentry.py
index 6a9e320..75bef5a 100644
--- a/collapsedentry.py
+++ b/collapsedentry.py
@@ -143,7 +143,9 @@ class CollapsedEntry(hippo.CanvasBox):
def _create_resume_button(self):
button = CanvasIcon(icon_name='activity-start',
size=style.SMALL_ICON_SIZE,
- box_width=style.GRID_CELL_SIZE)
+ box_width=style.GRID_CELL_SIZE,
+ fill_color=style.COLOR_BUTTON_GREY.get_svg(),
+ stroke_color=style.COLOR_BUTTON_GREY.get_svg())
button.connect('button-release-event',
self._resume_button_release_event_cb)
return button