From 49ddec73c5cda611643e0af30149c9e147ed5946 Mon Sep 17 00:00:00 2001 From: MitchMarq42 Date: Fri, 21 Apr 2023 21:41:05 -0800 Subject: [PATCH] experiment w/ clickable title. Didn't work --- notibox.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notibox.el b/notibox.el index c273367..75e9f7d 100644 --- a/notibox.el +++ b/notibox.el @@ -57,7 +57,8 @@ "Populate the `*notibox*' buffer with TITLE and BODY properly formatted." (with-current-buffer (get-buffer-create "*notibox*") (erase-buffer) - (insert (format "%s\n%s\n%s" title + (insert (format "%s\n%s\n%s" ;; (buttonize title #'view-echo-area-messages) + title (propertize (make-string notibox-width ?─) 'face `((:foreground ,notibox-border-color))) body))))