experiment w/ clickable title. Didn't work

This commit is contained in:
MitchMarq42 2023-04-21 21:41:05 -08:00
parent ffeb980cb0
commit 49ddec73c5

View File

@ -57,7 +57,8 @@
"Populate the `*notibox*' buffer with TITLE and BODY properly formatted." "Populate the `*notibox*' buffer with TITLE and BODY properly formatted."
(with-current-buffer (get-buffer-create "*notibox*") (with-current-buffer (get-buffer-create "*notibox*")
(erase-buffer) (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 ?─) (propertize (make-string notibox-width ?─)
'face `((:foreground ,notibox-border-color))) 'face `((:foreground ,notibox-border-color)))
body)))) body))))