From 3c2a31a8fff726b8aa22f9153e4ccf724c7b5456 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Tue, 23 Aug 2016 01:52:42 +0900 Subject: [PATCH] git rid of unnessary logic. Previously, generated views were to terminated if the edj path is changed, but it's not quite useful at any scenarios. User may want to change just the edj output path without any input resources changes. --- src/lib/enventor_smart.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/lib/enventor_smart.c b/src/lib/enventor_smart.c index 17e90a9..3da09a2 100644 --- a/src/lib/enventor_smart.c +++ b/src/lib/enventor_smart.c @@ -514,18 +514,6 @@ _enventor_object_path_set(Eo *obj EINA_UNUSED, Enventor_Object_Data *pd EINA_UNUSED, Enventor_Path_Type type, const Eina_List *pathes) { - //edj file is changed - if (type == ENVENTOR_PATH_TYPE_EDJ) - { - const char *path = eina_list_data_get(pathes); - const char *ppath = build_edj_path_get(); - if (path && ppath && strcmp(path, ppath)) - { - edj_mgr_clear(); - eina_stringshare_del(pd->group_name); - pd->group_name = NULL; - } - } return build_path_set(type, pathes); }