hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=859d38c7f018b8383191801e0967c59ad6a200f8
commit 859d38c7f018b8383191801e0967c59ad6a200f8 Author: ChunEon Park <[email protected]> Date: Sat Nov 1 18:29:56 2014 +0900 lib/build: update the build commands. if the edc file path is changed, the build command should be updated. Before this fix, it missed updation so the live view wasn't updated even if new template is selected. --- src/lib/build.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/build.c b/src/lib/build.c index d0de6c8..a58d09b 100644 --- a/src/lib/build.c +++ b/src/lib/build.c @@ -247,4 +247,5 @@ build_edc_path_set(const char *edc_path) if (bd->edc_path == edc_path) return; eina_stringshare_del(bd->edc_path); bd->edc_path = eina_stringshare_add(edc_path); + bd->build_cmd_changed = EINA_TRUE; } --
