jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=040945e3336506b80b113ba5384d6246f95c156e

commit 040945e3336506b80b113ba5384d6246f95c156e
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Tue Jul 14 13:49:51 2015 +0900

    Evas filters: Fix color value for invisible
    
    Since the filters default to alpha = 255 the actual value of
    invisible / transparent was black.
---
 src/lib/evas/filters/lua/color.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/filters/lua/color.lua 
b/src/lib/evas/filters/lua/color.lua
index fc60d8e..b4bcd4b 100644
--- a/src/lib/evas/filters/lua/color.lua
+++ b/src/lib/evas/filters/lua/color.lua
@@ -91,8 +91,8 @@ __color = {
       grey = 0xFF808080,
       silver = 0xFFC0C0C0,
       olive = 0xFF808000,
-      invisible = 0x00000000,
-      transparent = 0x00000000
+      invisible = '#0000',
+      transparent = '#0000'
    },
 
    __methods = {

-- 


Reply via email to