summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyunho Kang <hhstark.kang@samsung.com>2017-03-17 22:59:28 +0900
committerHyunho Kang <hhstark.kang@samsung.com>2017-03-19 21:38:24 -0700
commit48f9d97a5d930e13ad80e318bdd2c7e6bfab0020 (patch)
treeb5fa23a5a9fc30700337f88cc3ef2cb8eeadd405
parentdad8b9e077617e32e5c62fb6b6716dc04249f679 (diff)
downloadappcore-widget-48f9d97a5d930e13ad80e318bdd2c7e6bfab0020.tar.gz
appcore-widget-48f9d97a5d930e13ad80e318bdd2c7e6bfab0020.tar.bz2
appcore-widget-48f9d97a5d930e13ad80e318bdd2c7e6bfab0020.zip
Handle widget resize event
Change-Id: I8a6a8cc7be128ebd8720bb2bd6a0794385a2b97a Signed-off-by: Hyunho Kang <hhstark.kang@samsung.com> (cherry picked from commit e14b8629ef2df41c3a018aaed9f2d40a791c03ff)
-rwxr-xr-xsrc/widget_app.c1
1 files changed, 1 insertions, 0 deletions
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);