Add color-depth attribute on splash screen 74/68674/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 9 May 2016 08:55:47 +0000 (17:55 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 9 May 2016 08:55:47 +0000 (17:55 +0900)
- Requires:
[pkgmgr-info] https://review.tizen.org/gerrit/#/c/68656/
[manifest-parser] https://review.tizen.org/gerrit/#/c/68658/

Change-Id: I7e72c0218531f6c746b53a2d95e9f6a4a18eb671
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/common/step/configuration/step_parse_manifest.cc

index cc222f7..db78f0a 100644 (file)
@@ -682,6 +682,8 @@ bool StepParseManifest::FillSplashScreen(application_x* app,
       splashscreen->indicatordisplay = strdup("true");
     if (!splash_screen.operation().empty())
       splashscreen->operation = strdup(splash_screen.operation().c_str());
+    if (!splash_screen.colordepth().empty())
+      splashscreen->color_depth = strdup(splash_screen.colordepth().c_str());
     app->splashscreens = g_list_append(app->splashscreens, splashscreen);
   }
   return true;