raster pushed a commit to branch efl-1.20.

http://git.enlightenment.org/core/efl.git/commit/?id=946d5f2dd6c034884a86c15d1477a54ff3fcce9e

commit 946d5f2dd6c034884a86c15d1477a54ff3fcce9e
Author: Andrii Kroitor <an.kroi...@samsung.com>
Date:   Mon Oct 30 09:59:19 2017 +0200

    edje_cc: fix default color_class colors
    
    If you have undefined color_class, edje will use solid white for its
    colors. If you define color_class name without colors edje_cc now has
    same defaults instead of 0 0 0 0.
    
    @fix
---
 src/bin/edje/edje_cc_handlers.c | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index 748fd19a0a..fbc4864486 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -3082,18 +3082,18 @@ ob_color_class(void)
    cc = mem_alloc(SZ(Edje_Color_Class));
    edje_file->color_classes = eina_list_append(edje_file->color_classes, cc);
 
-   cc->r = 0;
-   cc->g = 0;
-   cc->b = 0;
-   cc->a = 0;
-   cc->r2 = 0;
-   cc->g2 = 0;
-   cc->b2 = 0;
-   cc->a2 = 0;
-   cc->r3 = 0;
-   cc->g3 = 0;
-   cc->b3 = 0;
-   cc->a3 = 0;
+   cc->r = 255;
+   cc->g = 255;
+   cc->b = 255;
+   cc->a = 255;
+   cc->r2 = 255;
+   cc->g2 = 255;
+   cc->b2 = 255;
+   cc->a2 = 255;
+   cc->r3 = 255;
+   cc->g3 = 255;
+   cc->b3 = 255;
+   cc->a3 = 255;
 }
 
 static void
@@ -3194,7 +3194,7 @@ parse_color(void *base)
         i.e "#F00F" or "#F00".\n
         In string format you can omit alpha channel and it will be set to FF.
 
-        Defaults: 0 0 0 0
+        Defaults: 255 255 255 255
     @endproperty
 */
 static void
@@ -3225,7 +3225,7 @@ st_color_class_color(void)
         i.e "#F00F" or "#F00".\n
         In string format you can omit alpha channel and it will be set to FF.
 
-        Defaults: 0 0 0 0
+        Defaults: 255 255 255 255
     @endproperty
 */
 static void
@@ -3256,7 +3256,7 @@ st_color_class_color2(void)
         i.e "#F00F" or "#F00".\n
         In string format you can omit alpha channel and it will be set to FF.
 
-        Defaults: 0 0 0 0
+        Defaults: 255 255 255 255
     @endproperty
 */
 static void

-- 


Reply via email to