summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMyungki Lee <mk5004.lee@samsung.com>2017-04-03 20:48:09 +0900
committerMyungki Lee <mk5004.lee@samsung.com>2017-04-03 20:48:09 +0900
commit43dbdead6768ea1ced840643f9cd05448af76936 (patch)
treea969bac395686675bb955630d00b444b60525c5c
parent79c3c233f0451b731587c5ffb7602126af594cd5 (diff)
downloadnotification-43dbdead6768ea1ced840643f9cd05448af76936.tar.gz
notification-43dbdead6768ea1ced840643f9cd05448af76936.tar.bz2
notification-43dbdead6768ea1ced840643f9cd05448af76936.zip
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 <mk5004.lee@samsung.com>
-rwxr-xr-xsrc/notification.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/notification.c b/src/notification.c
index 59a939d..1326dd7 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;