]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor svg wrap tweak
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 19 Sep 2019 14:07:58 +0000 (16:07 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 19 Sep 2019 14:07:58 +0000 (16:07 +0200)
* lisp/net/shr.el (svg--wrap-svg): Add the size to the wrapper to
avoid having the SVG images shrink (bug#37159).

lisp/net/shr.el

index d8a01cbbc1b60ec3b44f78eb1e028b7bdc89d04c..cd5aa3980a318eed11601b945335d48160ae9cf3 100644 (file)
@@ -1192,7 +1192,7 @@ Return a string with image data."
     (with-temp-buffer
       (insert
        (format
-        "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xi=\"http://www.w3.org/2001/XInclude\" style=\"color: %s;\" viewBox=\"0 0 %d %d\"> <xi:include href=\"data:image/svg+xml;base64,%s \"></xi:include></svg>"
+        "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:xi=\"http://www.w3.org/2001/XInclude\" style=\"color: %s;\" viewBox=\"0 0 %d %d\"> <xi:include href=\"data:image/svg+xml;base64,%s\"></xi:include></svg>"
         (face-foreground 'default)
         (car size) (cdr size)
         (base64-encode-string data t)))