From 670b06502ff95fb6db0a614a0759ef7d14b6218f Mon Sep 17 00:00:00 2001 From: Vincent Zhang Date: Tue, 9 Jun 2020 01:41:07 +0800 Subject: [PATCH] Fix invalid face attribute :inherit nil on 26. --- doom-modeline-core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doom-modeline-core.el b/doom-modeline-core.el index af82c18..c8c0bfd 100644 --- a/doom-modeline-core.el +++ b/doom-modeline-core.el @@ -871,7 +871,7 @@ So convert the face \":family XXX :height XXX :inherit XXX\" to See https://github.com/seagle0128/doom-modeline/issues/301." (when-let* ((props (and icon (get-text-property 0 'face icon))) (family (plist-get props :family)) - (height (plist-get props :height) 1.0) + (height (plist-get props :height)) (face (or face (plist-get props :inherit) props)) (new-face `(:inherit ,face :family ,family