From 91ca743b857ec92065be765bf0f3767e18abc1c2 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Mon, 12 Oct 2015 16:56:16 +0900 Subject: [PATCH] Fix filter in snapshot test Snaphot objects are opaque. So a color with alpha < 255 is not valid. I kinda wonder: - if snapshot objects should really be opaque - should this have been properly handled by the image object? --- src/bin/snapshot_widgets_file_icons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/snapshot_widgets_file_icons.c b/src/bin/snapshot_widgets_file_icons.c index 4bfb42f..8088edd 100644 --- a/src/bin/snapshot_widgets_file_icons.c +++ b/src/bin/snapshot_widgets_file_icons.c @@ -84,7 +84,7 @@ static void _setup(void) } const char *filter = - "blur { 5, dst = a, color = '#ff08' }" + "blur { 5, dst = a, color = '#ff0' }" ; o = eo_add(EVAS_IMAGE_CLASS, evas);