]> git.eshelyaron.com Git - emacs.git/commitdiff
Always rescale images in gnus-rescale-image
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 11 Apr 2018 17:31:37 +0000 (19:31 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 11 Apr 2018 17:32:17 +0000 (19:32 +0200)
* lisp/gnus/gnus-util.el (gnus-rescale-image): Rescale images even
if we don't have a visible article buffer.  Reported and fix
suggested by Kevin Brubeck Unhammer.

lisp/gnus/gnus-util.el

index 932ae5b5411fe9ef87b8db382b138c466d6b05dc..1001d11df4fa42c9933361d6770a602fb35537db 100644 (file)
@@ -1615,8 +1615,7 @@ empty directories from OLD-PATH."
   "Rescale IMAGE to SIZE if possible.
 SIZE is in format (WIDTH . HEIGHT). Return a new image.
 Sizes are in pixels."
-  (if (or (not (fboundp 'imagemagick-types))
-         (not (get-buffer-window (current-buffer))))
+  (if (not (fboundp 'imagemagick-types))
       image
     (let ((new-width (car size))
           (new-height (cdr size)))