diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-10-12 16:56:16 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-10-12 16:56:16 +0900 |
commit | 91ca743b857ec92065be765bf0f3767e18abc1c2 (patch) | |
tree | eebc00dddd15f3fdb9dc35510d2b99472c8afb6e | |
parent | 9cf0688f994c8bae395a79be39b1551278861794 (diff) |
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?
-rw-r--r-- | src/bin/snapshot_widgets_file_icons.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
84 | } | 84 | } |
85 | 85 | ||
86 | const char *filter = | 86 | const char *filter = |
87 | "blur { 5, dst = a, color = '#ff08' }" | 87 | "blur { 5, dst = a, color = '#ff0' }" |
88 | ; | 88 | ; |
89 | 89 | ||
90 | o = eo_add(EVAS_IMAGE_CLASS, evas); | 90 | o = eo_add(EVAS_IMAGE_CLASS, evas); |