From cf7808197743696f6935237b72bd1e474f6c9368 Mon Sep 17 00:00:00 2001 From: Jaehyun Cho Date: Fri, 27 Feb 2015 17:32:24 +0900 Subject: [PATCH] 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);