]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak the sizing of the shr placeholder images on HiDPI screens
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 25 Jul 2019 18:44:07 +0000 (20:44 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 25 Jul 2019 18:44:07 +0000 (20:44 +0200)
* lisp/net/shr.el (shr-make-placeholder-image): We have already
computed the size of the placeholder including the scale, so force
the automatic scale to 1.  This will make the placeholder the
correct size on HiDPI screen.

lisp/net/shr.el

index 5001743474ae951fb9a54db5adc53c77d9c43ad2..98b09ab29707bb0c9ad1a3da15e697d686c271ee 100644 (file)
@@ -1745,7 +1745,7 @@ The preference is a float determined from `shr-prefer-media-type'."
     (svg-gradient svg "background" 'linear '((0 . "#b0b0b0") (100 . "#808080")))
     (svg-rectangle svg 0 0 width height :gradient "background"
                    :stroke-width 2 :stroke-color "black")
-    (let ((image (svg-image svg)))
+    (let ((image (svg-image svg :scale 1)))
       (setf (image-property image :ascent) 100)
       image)))