From c61d5ca85c4bbc8824adec5b75bb68b78daf3771 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?=
 <rafael.carre@savoirfairelinux.com>
Date: Fri, 26 Aug 2011 13:59:04 -0400
Subject: [PATCH] timer : use second precision, not millisecond

---
 gnome/src/mainwindow.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome/src/mainwindow.c b/gnome/src/mainwindow.c
index 0e325472b0..66b201fd5f 100644
--- a/gnome/src/mainwindow.c
+++ b/gnome/src/mainwindow.c
@@ -302,7 +302,7 @@ create_main_window ()
 
     gmutex = g_mutex_new();
 
-    g_timeout_add(1000, calltree_update_clock, NULL);
+    g_timeout_add_seconds(1, calltree_update_clock, NULL);
 
     // Configuration wizard
     if (account_list_get_size () == 1) {
-- 
GitLab