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 21:14:41 +0900
commite41d1b0a02cc4beecb190edb9759ed2099daae3b (patch)
treee623b558f846ce05d4c810dde7834eefd101a944
parentad86f13725ea9673d8496ba6f2945757011242a7 (diff)
downloadnotification-e41d1b0a02cc4beecb190edb9759ed2099daae3b.tar.gz
notification-e41d1b0a02cc4beecb190edb9759ed2099daae3b.tar.bz2
notification-e41d1b0a02cc4beecb190edb9759ed2099daae3b.zip
- 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 41dce20..407a2ff 100755
--- a/src/notification.c
+++ b/src/notification.c
@@ -1436,7 +1436,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;