From: Myungki Lee Date: Mon, 3 Apr 2017 11:48:09 +0000 (+0900) Subject: Change default display_applist X-Git-Tag: submit/tizen/20170403.122014~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43dbdead6768ea1ced840643f9cd05448af76936;p=platform%2Fcore%2Fapi%2Fnotification.git Change default display_applist - NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY NOTIFICATION_DISPLAY_APP_LOCK NOTIFICATION_DISPLAY_APP_TICKER NOTIFICATION_DISPLAY_APP_INDICATOR Change-Id: If2e629d0f578ee8eb7898eb338b96297e996cbc2 Signed-off-by: Myungki Lee --- diff --git a/src/notification.c b/src/notification.c index 59a939da..1326dd72 100755 --- a/src/notification.c +++ b/src/notification.c @@ -1426,7 +1426,10 @@ static notification_h _notification_create(notification_type_e type) noti->sound_type = NOTIFICATION_SOUND_TYPE_NONE; noti->vibration_type = NOTIFICATION_VIBRATION_TYPE_NONE; noti->led_operation = NOTIFICATION_LED_OP_OFF; - noti->display_applist = NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY | NOTIFICATION_DISPLAY_APP_TICKER | NOTIFICATION_DISPLAY_APP_INDICATOR; + noti->display_applist = NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY | + NOTIFICATION_DISPLAY_APP_LOCK | + NOTIFICATION_DISPLAY_APP_TICKER | + NOTIFICATION_DISPLAY_APP_INDICATOR; noti->auto_remove = true; noti->ongoing_flag = false; noti->default_button_index = 0;