From: Hwankyu Jhun Date: Mon, 9 May 2016 08:55:47 +0000 (+0900) Subject: Add color-depth attribute on splash screen X-Git-Tag: accepted/tizen/common/20160511.141652^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0bd35defb0cca83e0ec3351e9e2eb6267a7296a3;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Add color-depth attribute on splash screen - 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 --- diff --git a/src/common/step/configuration/step_parse_manifest.cc b/src/common/step/configuration/step_parse_manifest.cc index cc222f7..db78f0a 100644 --- a/src/common/step/configuration/step_parse_manifest.cc +++ b/src/common/step/configuration/step_parse_manifest.cc @@ -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;