diff options
author | Juri Linkov <juri@linkov.net> | 2022-09-16 10:09:20 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2022-09-16 10:09:20 +0300 |
commit | 8b29b296931a20ee9f3b3e19aab07ba71b9a12c1 (patch) | |
tree | 1c59f14f3b91a434708f2078b8f494b6c24ae5e5 /lisp/emacs-lisp/icons.el | |
parent | e3b79c641e04a9e8681e7e27db3db3e4beec0fa4 (diff) | |
download | emacs-8b29b296931a20ee9f3b3e19aab07ba71b9a12c1.tar.gz emacs-8b29b296931a20ee9f3b3e19aab07ba71b9a12c1.tar.bz2 emacs-8b29b296931a20ee9f3b3e19aab07ba71b9a12c1.zip |
Add outline open/close images (bug#57813)
* etc/images/outline-open.svg:
* etc/images/outline-close.svg: New files.
* lisp/outline.el (outline-open, outline-close): Use images
outline-open.svg and outline-close.svg.
* lisp/emacs-lisp/icons.el (icons--create): Add :ascent 'center'.
Diffstat (limited to 'lisp/emacs-lisp/icons.el')
-rw-r--r-- | lisp/emacs-lisp/icons.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/icons.el b/lisp/emacs-lisp/icons.el index 93749a3451e..ff4f20c2071 100644 --- a/lisp/emacs-lisp/icons.el +++ b/lisp/emacs-lisp/icons.el @@ -202,7 +202,7 @@ present if the icon is represented by an image." :height (if (eq height 'line) (window-default-line-height) height) - :scale 1) + :scale 1 :ascent 'center) (create-image file)))))) (cl-defmethod icons--create ((_type (eql 'emoji)) icon _keywords) |