[Galago-commits] r2536 - in trunk/notification-daemon: . src
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Sat Feb 4 01:49:23 PST 2006
Author: chipx86
Date: 2006-02-04 01:49:21 -0800 (Sat, 04 Feb 2006)
New Revision: 2536
Modified:
trunk/notification-daemon/ChangeLog
trunk/notification-daemon/src/daemon.c
Log:
Check notification expiration every 100ms instead of every 500ms.
Modified: trunk/notification-daemon/ChangeLog
===================================================================
--- trunk/notification-daemon/ChangeLog 2006-02-04 09:47:18 UTC (rev 2535)
+++ trunk/notification-daemon/ChangeLog 2006-02-04 09:49:21 UTC (rev 2536)
@@ -1,3 +1,8 @@
+Sat Feb 04 01:48:50 PST 2006 Christian Hammond <chipx86 at chipx86.com>
+
+ * src/daemon.c:
+ - Check notification expiration every 100ms instead of every 500ms.
+
Sat Feb 04 01:26:41 PST 2006 Christian Hammond <chipx86 at chipx86.com>
* themes/standard/theme.c:
Modified: trunk/notification-daemon/src/daemon.c
===================================================================
--- trunk/notification-daemon/src/daemon.c 2006-02-04 09:47:18 UTC (rev 2535)
+++ trunk/notification-daemon/src/daemon.c 2006-02-04 09:49:21 UTC (rev 2536)
@@ -317,7 +317,7 @@
if (daemon->priv->timeout_source == 0)
{
- daemon->priv->timeout_source = g_timeout_add(500,
+ daemon->priv->timeout_source = g_timeout_add(100,
_check_expiration,
daemon);
}
More information about the galago-commits
mailing list