1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

Reverse the outline arrows

* lisp/outline.el (outline-open): Reverse the arrows to match
arrows in Customize (bug#57082).
This commit is contained in:
Stephen Berman 2022-08-12 14:49:22 +02:00 committed by Lars Ingebrigtsen
parent a99ea4b761
commit a23f9b7bda

View File

@ -294,16 +294,16 @@ buffers (yet) -- that will be amended in a future version."
:version "29.1")
(define-icon outline-open button
'((emoji "▶️")
(symbol " ")
'((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 "🔽")
(symbol " ")
'((emoji "▶️")
(symbol " ")
(text " close "))
"Icon used for buttons for closing a section in outline buffers."
:version "29.1"