From: Hyunho Kang Date: Fri, 17 Mar 2017 13:59:28 +0000 (+0900) Subject: Handle widget resize event X-Git-Tag: accepted/tizen/3.0/common/20170321.122711~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F119753%2F1;p=platform%2Fcore%2Fappfw%2Fappcore-widget.git Handle widget resize event Change-Id: I8a6a8cc7be128ebd8720bb2bd6a0794385a2b97a Signed-off-by: Hyunho Kang (cherry picked from commit e14b8629ef2df41c3a018aaed9f2d40a791c03ff) --- diff --git a/src/widget_app.c b/src/widget_app.c index 6cedfa8..a5a5bdb 100755 --- a/src/widget_app.c +++ b/src/widget_app.c @@ -634,6 +634,7 @@ static void __control(bundle *b) __instance_create(handle, id, content, w, h); } else if (strcmp(operation, "resize") == 0) { __resize_window(id, w, h); + __instance_resize(handle, id, w, h); } else if (strcmp(operation, "update") == 0) { if (id) __instance_update(handle, id, force, content);