Remove unnecessary code 91/251291/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Tue, 12 Jan 2021 07:52:22 +0000 (16:52 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Tue, 12 Jan 2021 07:52:22 +0000 (16:52 +0900)
Change-Id: Idb92e7506dace81aefa4a8ce6ad3bb9a804e9ae4
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
ism/demos/isf_demo_efl.cpp

index 45efcf3..44d3cba 100644 (file)
@@ -212,16 +212,11 @@ static Evas_Object* create_win (const char *name)
 {
     Evas_Object *eo = NULL;
     const int rots[4] = { 0, 90, 180, 270 };
-    int w, h;
 
     eo = elm_win_util_standard_add (name, name);
     if (eo != NULL) {
         evas_object_smart_callback_add (eo, "delete,request",
                                         win_del, NULL);
-
-        elm_win_screen_size_get (eo, NULL, NULL, &w, &h);
-        LOGD ("resize window as %d x %d", w, h);
-        evas_object_resize (eo, w, h);
     }
 
     if (elm_win_wm_rotation_supported_get (eo)) {