diff --git a/ChangeLog b/ChangeLog index 8dd1b5b..99e9813 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Wed Jul 27 02:12:31 PDT 2005 Christian Hammond + + * libnotify/notify.c: + - Actually set the expires flag in the notification handle so we + don't just kill off all notifications as soon as we create them + and exit. + Wed Jul 27 01:47:25 PDT 2005 Christian Hammond * libnotify/notify.c: diff --git a/libnotify/notify.c b/libnotify/notify.c index 54239ab..7caa932 100644 --- a/libnotify/notify.c +++ b/libnotify/notify.c @@ -937,7 +937,8 @@ notify_send_notification_varg(NotifyHandle *replaces, const char *type, handle = _notify_handle_new(id); handle->actions_table = table; handle->action_count = action_count; - handle->user_data = user_data; + handle->user_data = user_data; + handle->expires = expires; return handle; }