jaehyun pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=a6b495dc9cc7c2d47ed5ec97454a6ef61d6eac6d
commit a6b495dc9cc7c2d47ed5ec97454a6ef61d6eac6d Author: Taehyub Kim <taehyub....@samsung.com> Date: Tue Aug 2 22:49:28 2016 +0900 envnetor_smart: fix the view resize callback Summary: fix the view resize callback Test Plan: 1. launch enventor 2. run group template 3. change the view size 4. change the group 5. change the view size 6. change the group to firxt 7. see the result Reviewers: Hermet, NikaWhite, Jaehyun_Cho Reviewed By: Jaehyun_Cho Differential Revision: https://phab.enlightenment.org/D4208 --- src/bin/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/main.c b/src/bin/main.c index b1b1b59..138826f 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -447,6 +447,7 @@ enventor_live_view_resized_cb(void *data EINA_UNUSED, { Enventor_Live_View_Size *size = event_info; stats_view_size_update(size->w, size->h); + config_view_size_set(size->w, size->h); } static void --