summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJee-Yong Um <jc9.um@samsung.com>2016-03-18 11:52:52 -0700
committerCedric Bail <cedric@osg.samsung.com>2016-03-18 11:52:55 -0700
commit20c9d087d1d17716c120a3653e74323b6525c792 (patch)
tree4fc0419e8f7dc94f0df7bc2777a988f4e34e16e3
parent11887c62a24763d6b1f932a3fadd1e0c7692bc57 (diff)
downloadefl-20c9d087d1d17716c120a3653e74323b6525c792.tar.gz
edje_cc: make script_override default value as EINA_FALSE
Summary: script_override variable is initialized as EINA_FALSE when group is created, but assign EINA_TRUE can mislead some developers to think script_override default value is EINA_TRUE. Reviewers: Jaehyun_Cho Subscribers: cedric, jpeg Differential Revision: https://phab.enlightenment.org/D3803 Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
-rw-r--r--src/bin/edje/edje_cc_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/edje/edje_cc_handlers.c b/src/bin/edje/edje_cc_handlers.c
index edc3542475..26f53ca0a8 100644
--- a/src/bin/edje/edje_cc_handlers.c
+++ b/src/bin/edje/edje_cc_handlers.c
@@ -163,7 +163,7 @@ static Edje_Part_Description_Common *parent_desc = NULL;
static Edje_Program *current_program = NULL;
static Eina_List *current_program_lookups = NULL;
Eina_Bool current_group_inherit = EINA_FALSE;
-Eina_Bool script_override = EINA_TRUE;
+Eina_Bool script_override = EINA_FALSE;
static Edje_Program *sequencing = NULL;
static Eina_List *sequencing_lookups = NULL;