From fcecc5975eb7b7db8746471dc5383853e0c9d471 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergio=20Villar=20Sen=C3=ADn?= Date: Mon, 18 May 2009 12:41:34 +0200 Subject: [PATCH] Fixes NB#116720, make the notifications persistent. This mean that they'll survive reboots --- src/hildon2/modest-platform.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hildon2/modest-platform.c b/src/hildon2/modest-platform.c index 18db4b3..1a338b3 100644 --- a/src/hildon2/modest-platform.c +++ b/src/hildon2/modest-platform.c @@ -1604,12 +1604,14 @@ modest_platform_on_new_headers_received (TnyList *header_list, first_notification = FALSE; - /* Set the led pattern */ + /* Set the led pattern and make the notification persistent */ notify_notification_set_hint_int32 (NOTIFY_NOTIFICATION (notification), "dialog-type", 4); notify_notification_set_hint_string(NOTIFY_NOTIFICATION (notification), "led-pattern", MODEST_NEW_MAIL_LIGHTING_PATTERN); + notify_notification_set_hint_byte (NOTIFY_NOTIFICATION (notification), + "persistent", TRUE); /* Set the account of the headers */ account = tny_folder_get_account (folder); -- 1.7.9.5