summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStephen Berman <stephen.berman@gmx.net>2022-08-12 14:49:22 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-08-12 14:49:22 +0200
commita23f9b7bda9f56ea97a4d5ff590e81625de63a6b (patch)
tree9b7272bfc1a698e86ed090f9cf147e43cec6e1e5 /lisp
parenta99ea4b7616025cf78c2f6bf69bc8e5cafb730b7 (diff)
downloademacs-a23f9b7bda9f56ea97a4d5ff590e81625de63a6b.tar.gz
emacs-a23f9b7bda9f56ea97a4d5ff590e81625de63a6b.tar.bz2
emacs-a23f9b7bda9f56ea97a4d5ff590e81625de63a6b.zip
Reverse the outline arrows
* lisp/outline.el (outline-open): Reverse the arrows to match arrows in Customize (bug#57082).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/outline.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/outline.el b/lisp/outline.el
index 35524a79a90..8132043097e 100644
--- a/lisp/outline.el
+++ b/lisp/outline.el
@@ -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"