From 989a3134534199af2ab4626597ae3dbe9ec038d9 Mon Sep 17 00:00:00 2001 From: Junghyun Yeon Date: Thu, 28 Nov 2019 18:50:52 +0900 Subject: [PATCH] Change default value of nodisplay Change it to true in order to hide it from app drawer. Change-Id: I93f92f127be05686968f8de2b3034ab0345af9f0 Signed-off-by: Junghyun Yeon --- src/wgt/step/configuration/step_parse.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wgt/step/configuration/step_parse.cc b/src/wgt/step/configuration/step_parse.cc index 9799b3e..9cbf0fb 100644 --- a/src/wgt/step/configuration/step_parse.cc +++ b/src/wgt/step/configuration/step_parse.cc @@ -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"); -- 2.7.4