jaehyun pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=cf7808197743696f6935237b72bd1e474f6c9368
commit cf7808197743696f6935237b72bd1e474f6c9368 Author: Jaehyun Cho <jae_hyun....@samsung.com> Date: Fri Feb 27 17:32:24 2015 +0900 newfile: Fix that edj is not reloaded when newly opened edc is changed. edj was not reloaded when newly opened edc is changed since the new edc path was not stored in conifg edc path. --- src/bin/newfile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/newfile.c b/src/bin/newfile.c index 1d9cc3a..9c48ed4 100644 --- a/src/bin/newfile.c +++ b/src/bin/newfile.c @@ -43,6 +43,7 @@ newfile_set(Evas_Object *enventor, Eina_Bool template_new) eina_file_mkstemp(DEFAULT_EDC_FORMAT, &tmp_path); sprintf(path, "%s", (const char *)tmp_path); eina_tmpstr_del(tmp_path); + config_edc_path_set(path); } success = eina_file_copy(buf, path, EINA_FILE_COPY_DATA, NULL, NULL); --