summaryrefslogtreecommitdiff
path: root/home/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'home/src/main.c')
-rwxr-xr-xhome/src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/home/src/main.c b/home/src/main.c
index e6907c3..d2fb8ba 100755
--- a/home/src/main.c
+++ b/home/src/main.c
@@ -83,6 +83,7 @@
#define HOME_SERVICE_VALUE_SHOW_NOTI "show_noti"
#define HOME_SERVICE_VALUE_APPS_EDIT "apps_edit"
#define HOME_SERVICE_VALUE_FIRST_BOOT "first_boot"
+#define HOME_SERVICE_VALUE_LAUNCH_APPS "launch_apps"
#define PRIVATE_DATA_KEY_FOCUS_IN_EVENT_HANDLER "k_fi_ev_hd"
#define PRIVATE_DATA_KEY_FOCUS_OUT_EVENT_HANDLER "k_fo_ev_hd"
@@ -1186,9 +1187,10 @@ static void _app_control(app_control_h service, void *data)
} else if (!strncmp(service_val, HOME_SERVICE_VALUE_FIRST_BOOT, strlen(HOME_SERVICE_VALUE_FIRST_BOOT))) {
_D("First boot operation");
main_info.first_boot = 1;
- } else if (!strncmp(service_val, "launch_apps", strlen("launch_apps"))) {
+ } else if (!strncmp(service_val, HOME_SERVICE_VALUE_LAUNCH_APPS, strlen(HOME_SERVICE_VALUE_LAUNCH_APPS))) {
_D("Launch Circular UI");
/* launch_apps_UI(NULL); */
+ apps_show();
}
free(service_val);
} else {