From ccd4b4c4110c0cbc49ac393dc2c6de4bef60983a Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Mon, 17 Aug 2009 10:04:38 +0000 Subject: Do not send notifications when running in background mode if user did not flag its appointment. --- src/notify.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/notify.c b/src/notify.c index cf57ef3..72741ed 100755 --- a/src/notify.c +++ b/src/notify.c @@ -1,4 +1,4 @@ -/* $calcurse: notify.c,v 1.46 2009/08/13 17:30:42 culot Exp $ */ +/* $calcurse: notify.c,v 1.47 2009/08/17 10:04:39 culot Exp $ */ /* * Calcurse - text-based organizer @@ -82,7 +82,9 @@ notify_time_left (void) unsigned notify_needs_reminder (void) { - if (notify_app.got_app & !(notify_app.state & APOINT_NOTIFIED)) + if (notify_app.got_app + && (notify_app.state & APOINT_NOTIFY) + && !(notify_app.state & APOINT_NOTIFIED)) return 1; return 0; } -- cgit v1.2.3