From 9245e030bbd10e426a298bff665f086305e01622 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 20 Sep 2018 22:22:14 -0400 Subject: [PATCH] Fix doom/reload-font for XFT fonts --- core/autoload/ui.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/ui.el b/core/autoload/ui.el index 4201549a8..3146407c6 100644 --- a/core/autoload/ui.el +++ b/core/autoload/ui.el @@ -146,7 +146,7 @@ windows (unlike `doom/window-zoom') Activate again to undo." "Reload `doom-font', `doom-variable-pitch-font', and `doom-unicode-font', if set." (interactive) - (when (fontp doom-font) + (when doom-font (set-frame-font doom-font t)) (doom|init-fonts))