Evas filters: Fix color value for invisible
authorJean-Philippe Andre <jp.andre@samsung.com>
Tue, 14 Jul 2015 04:49:51 +0000 (13:49 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Thu, 16 Jul 2015 10:50:38 +0000 (19:50 +0900)
Since the filters default to alpha = 255 the actual value of
invisible / transparent was black.

src/lib/evas/filters/lua/color.lua

index fc60d8e..b4bcd4b 100644 (file)
@@ -91,8 +91,8 @@ __color = {
       grey = 0xFF808080,
       silver = 0xFFC0C0C0,
       olive = 0xFF808000,
-      invisible = 0x00000000,
-      transparent = 0x00000000
+      invisible = '#0000',
+      transparent = '#0000'
    },
 
    __methods = {