Set default operation of splash screen 60/82860/2
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 8 Aug 2016 07:44:14 +0000 (16:44 +0900)
committerHwanKyu Jhun <h.jhun@samsung.com>
Tue, 9 Aug 2016 05:27:37 +0000 (22:27 -0700)
Change-Id: I14f28544ff572d21affade002fb53d775025c396
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/common/step/configuration/step_parse_manifest.cc

index b7728d7..e86931c 100644 (file)
@@ -726,12 +726,17 @@ bool StepParseManifest::FillSplashScreen(application_x* app,
           splash_screen.indicatordisplay().c_str());
     else
       splashscreen->indicatordisplay = strdup("true");
+
     if (!splash_screen.operation().empty())
       splashscreen->operation = strdup(splash_screen.operation().c_str());
+    else
+      splashscreen->operation = strdup("launch-effect");
+
     if (!splash_screen.colordepth().empty())
       splashscreen->color_depth = strdup(splash_screen.colordepth().c_str());
     else
       splashscreen->color_depth = strdup("24");
+
     app->splashscreens = g_list_append(app->splashscreens, splashscreen);
   }
   return true;