]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak the Message screenshot insertion
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 5 Aug 2020 10:31:44 +0000 (12:31 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 5 Aug 2020 10:31:44 +0000 (12:31 +0200)
* lisp/gnus/message.el (message-insert-screenshot): Force scaling
to 1, since the screenshot image will already be suitable for
displaying directly (it's the same resolution).

lisp/gnus/message.el

index 1453cbe643ed1288ba459ae057411727cf7c374b..378c3b046734fe730c04ad8959efb7b226e915b3 100644 (file)
@@ -8694,9 +8694,12 @@ used to take the screenshot."
     (insert-image
      (create-image image 'png t
                   :max-width (* (frame-pixel-width) 0.8)
-                  :max-height (* (frame-pixel-height) 0.8))
+                  :max-height (* (frame-pixel-height) 0.8)
+                  :scale 1)
      (format "<#part type=\"image/png\" disposition=inline content-transfer-encoding=base64 raw=t>\n%s\n<#/part>"
-            ;; Get a base64 version of the image.
+            ;; Get a base64 version of the image -- this avoids later
+            ;; complications if we're auto-saving the buffer and
+            ;; restoring from a file.
             (with-temp-buffer
               (set-buffer-multibyte nil)
               (insert image)