diff options
| author | LdBeth <andpuke@foxmail.com> | 2022-01-14 07:15:00 -0600 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2022-01-14 17:12:41 -0400 |
| commit | c7c422ded29e73f7f6b53e82c40a36c93c041253 (patch) | |
| tree | 958e100e1d6012ab2b9a07e8329d3b6580098aa2 | |
| parent | f9d8f9c6bae1a9ea60b41755008b71381464e208 (diff) | |
emacs/notmuch-tag.el: add xmlns attribute to svg icons
emacs-mac that compiled with OS X system API for image display
support cannot correctly render svg without xmlns parameter [1].
[1]: id:tencent_127AA231767438AC66FEE4DDB4BBF51DF909@qq.com
| -rw-r--r-- | emacs/notmuch-tag.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/notmuch-tag.el b/emacs/notmuch-tag.el index 145f309f..8af09e68 100644 --- a/emacs/notmuch-tag.el +++ b/emacs/notmuch-tag.el @@ -241,7 +241,7 @@ DATA is the content of an SVG picture (e.g., as returned by "Return SVG data representing a star icon. This can be used with `notmuch-tag-format-image-data'." "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?> -<svg version=\"1.1\" width=\"16\" height=\"16\"> +<svg version=\"1.1\" width=\"16\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"> <g transform=\"translate(-242.81601,-315.59635)\"> <path d=\"m 290.25762,334.31206 -17.64143,-11.77975 -19.70508,7.85447 5.75171,-20.41814 -13.55925,-16.31348 21.19618,-0.83936 11.325,-17.93675 7.34825,19.89939 20.55849,5.22795 -16.65471,13.13786 z\" @@ -254,7 +254,7 @@ This can be used with `notmuch-tag-format-image-data'." "Return SVG data representing an empty star icon. This can be used with `notmuch-tag-format-image-data'." "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?> -<svg version=\"1.1\" width=\"16\" height=\"16\"> +<svg version=\"1.1\" width=\"16\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"> <g transform=\"translate(-242.81601,-315.59635)\"> <path d=\"m 290.25762,334.31206 -17.64143,-11.77975 -19.70508,7.85447 5.75171,-20.41814 -13.55925,-16.31348 21.19618,-0.83936 11.325,-17.93675 7.34825,19.89939 20.55849,5.22795 -16.65471,13.13786 z\" @@ -267,7 +267,7 @@ This can be used with `notmuch-tag-format-image-data'." "Return SVG data representing a tag icon. This can be used with `notmuch-tag-format-image-data'." "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?> -<svg version=\"1.1\" width=\"16\" height=\"16\"> +<svg version=\"1.1\" width=\"16\" height=\"16\" xmlns=\"http://www.w3.org/2000/svg\"> <g transform=\"translate(0,-1036.3622)\"> <path d=\"m 0.44642857,1040.9336 12.50000043,0 2.700893,3.6161 -2.700893,3.616 -12.50000043,0 z\" |
