From 3543969e6231ea854b321cd10a2a935b8e01bac2 Mon Sep 17 00:00:00 2001 From: tanya Date: Fri, 11 Jun 2010 12:56:10 +0300 Subject: [PATCH] changed delay after dbus to 5 --- applet/src/livewp-dbus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applet/src/livewp-dbus.c b/applet/src/livewp-dbus.c index 4ccddb7..bc470b0 100644 --- a/applet/src/livewp-dbus.c +++ b/applet/src/livewp-dbus.c @@ -156,12 +156,12 @@ get_livewp_signal_cb(DBusConnection *conn, DBusMessage *msg, Animation_Wallpaper if (dbus_message_is_method_call(msg, NOTIFY_SIGNAL_INTERFACE, NOTIFY_MEMBER)){ //fprintf(stderr,"read notifications.db notify\n"); //read_notification(priv->desktop_plugin); - priv->scene->notification = time(NULL) + 10; + priv->scene->notification = time(NULL) + 5; } if (dbus_message_is_signal(msg, NOTIFY_SIGNAL_INTERFACE, CLOSENOTIFY_MEMBER)){ //fprintf(stderr,"read notifications.db close notify\n"); //read_notification(priv->desktop_plugin); - priv->scene->notification = time(NULL) + 10; + priv->scene->notification = time(NULL) + 5; } return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; -- 1.7.9.5