summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrii Kroitor <an.kroitor@samsung.com>2017-10-27 13:03:28 +0300
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-11-07 18:30:08 +0900
commit6cede0247dd29890214241b303503ed570db195f (patch)
tree82890723eecc4ce7497855c8c004b4e62c49ec97
parent200a484ad6e8b1ae91569568d10b23e617fdb593 (diff)
downloadefl-6cede0247dd29890214241b303503ed570db195f.tar.gz
edje_cc: fix color_class description
It can't be overridden by color values in state. Colors can only be modified. @fix
-rw-r--r--src/bin/edje/edje_cc_handlers.c8
1 files changed, 7 insertions, 1 deletions
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
*/