From ae7a01b1da97c874a72bbd69ddcd670749766e99 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 21 Nov 2022 09:57:34 -0800 Subject: [PATCH] Fix dashboard banner face fixes #411 --- dashboard-widgets.el | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard-widgets.el b/dashboard-widgets.el index 794e0f4..a50d2a3 100644 --- a/dashboard-widgets.el +++ b/dashboard-widgets.el @@ -583,6 +583,7 @@ Argument IMAGE-PATH path to the image." ;; If specified, insert a text banner. (when-let (txt (plist-get banner :text)) (insert-file-contents txt) + (put-text-property (point) (point-max) 'face 'dashboard-text-banner) (setq text-width 0) (while (not (eobp)) (let ((line-length (- (line-end-position) (line-beginning-position))))