bug-fix: do not pre-create bg and conformant. 87/105787/1
authorCho Woong Suk <ws77.cho@samsung.com>
Fri, 16 Dec 2016 06:10:10 +0000 (15:10 +0900)
committerJongHeon Choi <j-h.choi@samsung.com>
Mon, 19 Dec 2016 12:02:10 +0000 (21:02 +0900)
Change-Id: I27cc5e44c72656f87eca5ef94f3c722c20254990

NativeLauncher/launcher/launcher.cc

index c26b0e0..c2d1ce4 100644 (file)
@@ -171,26 +171,6 @@ static void PreloadLibsAndWindow(bundle *extra, int type, void *user_data)
   }
 
   elm_win_precreated_object_set(__win);
-
-  __bg = elm_bg_add(__win);
-  if (__bg) {
-    evas_object_size_hint_weight_set(__bg, EVAS_HINT_EXPAND,
-        EVAS_HINT_EXPAND);
-    elm_win_resize_object_add(__win, __bg);
-    elm_bg_precreated_object_set(__bg);
-  } else {
-    _DBG("[candidate] elm_bg_add() failed");
-  }
-
-  __conform = elm_conformant_add(__win);
-  if (__conform) {
-    evas_object_size_hint_weight_set(__conform, EVAS_HINT_EXPAND,
-        EVAS_HINT_EXPAND);
-    elm_win_resize_object_add(__win, __conform);
-    elm_conformant_precreated_object_set(__conform);
-  } else {
-    _DBG("elm_conformant_add() failed");
-  }
 }
 
 void LaunchpadAdapterImpl::LoaderMain(int argc, char* argv[])