From 58454b661578bb56d8feccb1b0340b94869f0655 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Fri, 16 Sep 2022 15:45:36 +0800 Subject: [PATCH] Add portable versions of the outline SVGs * lisp/outline.el (outline-open): (outline-close): Add PBM images. * etc/images/outline-open.pbm: * etc/images/outline-close.pbm: New images used on systems without librsvg. --- etc/images/outline-close.pbm | Bin 0 -> 39 bytes etc/images/outline-open.pbm | Bin 0 -> 39 bytes lisp/outline.el | 2 ++ 3 files changed, 2 insertions(+) create mode 100644 etc/images/outline-close.pbm create mode 100644 etc/images/outline-open.pbm diff --git a/etc/images/outline-close.pbm b/etc/images/outline-close.pbm new file mode 100644 index 0000000000000000000000000000000000000000..b37b640b555fc03654447e3fd38533b392daa4d2 GIT binary patch literal 39 scmWGA;W9K;Ff`?2VBlcjVPIomW?*b!IKYs=aDcIa8OY}WiZd_(0A%X~p#T5? literal 0 HcmV?d00001 diff --git a/etc/images/outline-open.pbm b/etc/images/outline-open.pbm new file mode 100644 index 0000000000000000000000000000000000000000..06b520f14c97d3898897027ab922ae1b6fed8538 GIT binary patch literal 39 icmWGA;W9K;Ff`?2fPw@b0|^NOo&>f7%ngh%K?VR{(F8XD literal 0 HcmV?d00001 diff --git a/lisp/outline.el b/lisp/outline.el index aee6f696b5b..25f3b21e632 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -294,6 +294,7 @@ buffers (yet) -- that will be amended in a future version." (define-icon outline-open nil '((image "outline-open.svg" :height 15 :ascent center) + (image "outline-open.pbm" :height 15 :ascent center) (emoji "🔽") (symbol " ▼ ") (text " open ")) @@ -303,6 +304,7 @@ buffers (yet) -- that will be amended in a future version." (define-icon outline-close nil '((image "outline-close.svg" :height 15 :ascent center) + (image "outline-close.pbm" :height 15 :ascent center) (emoji "▶️") (symbol " ▶ ") (text " close ")) -- 2.39.2