Change default value of nodisplay 24/218824/3
authorJunghyun Yeon <jungh.yeon@samsung.com>
Thu, 28 Nov 2019 09:50:52 +0000 (18:50 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Tue, 10 Dec 2019 01:07:00 +0000 (01:07 +0000)
Change it to true in order to hide it from app drawer.

Change-Id: I93f92f127be05686968f8de2b3034ab0345af9f0
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
src/wgt/step/configuration/step_parse.cc

index 9799b3e..9cbf0fb 100644 (file)
@@ -470,7 +470,7 @@ bool StepParse::FillServiceApplicationInfo(manifest_x* manifest) {
         service_info.on_boot() ? strdup("true") : strdup("false");
     application->autorestart =
         service_info.auto_restart() ? strdup("true") : strdup("false");
-    application->nodisplay = strdup("false");
+    application->nodisplay = strdup("true");
     application->taskmanage = strdup("true");
     SetApplicationXDefaults(application);
     application->support_ambient = strdup("false");