From 14757dbd6c5080651552ffe05a201883f233c960 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Sat, 22 Jun 2013 19:21:32 +0200 Subject: [PATCH] telepathyClient: Increase the timestamp timeout to 3 minutes The timestamp timeout specifies how long we should wait before adding a timestamp to the notification. A timeout of one minute ended up showing a lot of timestamps, so increase it to 3 minutes. https://bugzilla.gnome.org/show_bug.cgi?id=687809 --- js/ui/components/telepathyClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/components/telepathyClient.js b/js/ui/components/telepathyClient.js index b07ea9516..670077932 100644 --- a/js/ui/components/telepathyClient.js +++ b/js/ui/components/telepathyClient.js @@ -18,7 +18,7 @@ const Params = imports.misc.params; const PopupMenu = imports.ui.popupMenu; // See Notification.appendMessage -const SCROLLBACK_IMMEDIATE_TIME = 60; // 1 minute +const SCROLLBACK_IMMEDIATE_TIME = 3 * 60; // 3 minutes const SCROLLBACK_RECENT_TIME = 15 * 60; // 15 minutes const SCROLLBACK_RECENT_LENGTH = 20; const SCROLLBACK_IDLE_LENGTH = 5;