Remove unnecessary code 98/249098/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 7 Dec 2020 05:53:05 +0000 (14:53 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Mon, 7 Dec 2020 05:53:05 +0000 (14:53 +0900)
Change-Id: Ibcc6a74f5ec63afc6b83e6d20d02aa90b4cb4e67
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
im_setting_selector/input_method_setting_selector_ui.cpp

index c9a9621..c8742f3 100644 (file)
@@ -48,7 +48,6 @@ im_setting_selector_main_window_create(const char *name)
 {
     Evas *e;
     Ecore_Evas *ee;
-    Evas_Coord w = -1, h = -1;
     Evas_Object *eo = im_setting_window_create(name, EINA_TRUE, EINA_TRUE);
     e = evas_object_evas_get(eo);
     if (e) {
@@ -58,11 +57,6 @@ im_setting_selector_main_window_create(const char *name)
         }
     }
 
-    elm_win_screen_size_get(eo, NULL, NULL, &w, &h);
-    if (w > 0 && h > 0) {
-        evas_object_resize(eo, w, h);
-    }
-
     return eo;
 }