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/outline.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/outline.el')
-rw-r--r-- | lisp/outline.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/outline.el b/lisp/outline.el index c9d1a4ac64b..aee6f696b5b 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -292,16 +292,18 @@ buffers (yet) -- that will be amended in a future version." :safe #'booleanp :version "29.1") -(define-icon outline-open button - '((emoji "🔽") +(define-icon outline-open nil + '((image "outline-open.svg" :height 15 :ascent center) + (emoji "🔽") (symbol " ▼ ") (text " open ")) "Icon used for buttons for opening a section in outline buffers." :version "29.1" :help-echo "Open this section") -(define-icon outline-close button - '((emoji "▶️") +(define-icon outline-close nil + '((image "outline-close.svg" :height 15 :ascent center) + (emoji "▶️") (symbol " ▶ ") (text " close ")) "Icon used for buttons for closing a section in outline buffers." |