mirror of
https://github.com/danth/stylix
synced 2024-11-10 06:34:15 +00:00
emacs: fix spurious quotes around :size arg (#555)
If the size is expressed as a string, Emacs calls bloody murder:
invalid font property (:size . "14.000000")
Fixes: 35233f9296
("emacs: explicitly set font size (#553)")
Reviewed-by: Jez Cope <jezcope@users.noreply.github.com>
Approved-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
parent
35233f9296
commit
149b313ddf
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ in
|
|||
(setq base16-theme-256-color-source 'colors)
|
||||
(load-theme 'base16-stylix t)
|
||||
;; Set font
|
||||
(set-face-attribute 'default t :font (font-spec :family "${monospace.name}" :size "${emacsSize}"))
|
||||
(set-face-attribute 'default t :font (font-spec :family "${monospace.name}" :size ${emacsSize}))
|
||||
;; -----------------------------
|
||||
;; set opacity
|
||||
(add-to-list 'default-frame-alist '(alpha-background . ${emacsOpacity}))
|
||||
|
|
Loading…
Reference in a new issue