From a131a53132aaccdca4136d49c492f9a2f9a382d8 Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Wed, 2 Oct 2024 11:05:27 -0400 Subject: [PATCH] Fix typos. --- scripts/tkremind | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tkremind b/scripts/tkremind index b97626a5..4050a050 100755 --- a/scripts/tkremind +++ b/scripts/tkremind @@ -801,7 +801,7 @@ proc EditOptions {} { -anchor w -justify left -variable tmpOpt(SysNotify) if { ! $HAVE_SYSNOTIFY } { - if { "$NOTIFY_SEND_PATH" = "" } { + if { "$NOTIFY_SEND_PATH" == "" } { $w.sysNotify configure -state disabled -takefocus 0 } } @@ -2968,7 +2968,7 @@ proc IssueBackgroundReminder { body time now tag qid } { if {$Option(SysNotify)} { if {$HAVE_SYSNOTIFY} { tk sysnotify "Reminder for $time" $body - } else if {"$NOTIFY_SEND_PATH" != "" } { + } elseif {"$NOTIFY_SEND_PATH" != "" } { catch { exec $NOTIFY_SEND_PATH -i dialog-information "Reminder for $time" "$body" }