Reminder dialog now handles pressing escape to close.

This commit is contained in:
Storm Dragon 2023-09-24 14:21:27 -04:00
parent 80cb28dc10
commit af77a60355
1 changed files with 3 additions and 2 deletions

View File

@ -129,12 +129,13 @@ while : ; do
# Handle "Add Reminder" button click
add_reminder
;;
1)
# Handle "Close" button click
1|252)
# Handle "Close" button click and escape.
exit 0
;;
2)
# View reminders
view_reminders
;;
esac
done