raster pushed a commit to branch efl-1.20.

http://git.enlightenment.org/core/efl.git/commit/?id=6cede0247dd29890214241b303503ed570db195f

commit 6cede0247dd29890214241b303503ed570db195f
Author: Andrii Kroitor <an.kroi...@samsung.com>
Date:   Fri Oct 27 13:03:28 2017 +0300

    edje_cc: fix color_class description
    
    It can't be overridden by color values in state. Colors can only be
    modified.
    
    @fix
---
 src/bin/edje/edje_cc_handlers.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index aa43325611..5a0367be40 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -9211,7 +9211,7 @@ 
st_collections_group_parts_part_description_aspect_preference(void)
         [color class name]
     @effect
         The part will use the color values of the named color_class, these
-        values can be overridden by the "color", "color2" and "color3"
+        values can be modified by the "color", "color2" and "color3"
         properties set below.
     @endproperty
 */
@@ -9248,6 +9248,8 @@ 
st_collections_group_parts_part_description_color_class(void)
         i.e "#F00F" or "#F00".\n
         In string format you can omit alpha channel and it will be set to FF.
 
+        If color_class is set resulting color channel values will be (color * 
color_class / 255)
+
         Defaults: 255 255 255 255
     @endproperty
 */
@@ -9282,6 +9284,8 @@ st_collections_group_parts_part_description_color(void)
         i.e "#F00F" or "#F00".\n
         In string format you can omit alpha channel and it will be set to FF.
 
+        If color_class is set resulting color channel values will be (color * 
color_class / 255)
+
         Defaults: 0 0 0 255
     @endproperty
 */
@@ -9316,6 +9320,8 @@ st_collections_group_parts_part_description_color2(void)
         i.e "#F00F" or "#F00".\n
         In string format you can omit alpha channel and it will be set to FF.
 
+        If color_class is set resulting color channel values will be (color * 
color_class / 255)
+
         Defaults: 0 0 0 128
     @endproperty
 */

-- 


Reply via email to