From: Stefan Kangas Date: Sat, 17 Sep 2022 22:21:12 +0000 (+0200) Subject: Increase image-dired-thumb-size to 128 X-Git-Tag: emacs-29.0.90~1856^2~416 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5cceb6d6acf6299f1347133aec7097b8771ff952;p=emacs.git Increase image-dired-thumb-size to 128 * lisp/image/image-dired.el (image-dired-thumb-size): Increase default to 128. --- diff --git a/etc/NEWS b/etc/NEWS index 8382d171cad..effd02fead8 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -2117,6 +2117,9 @@ thumbnails in the background in recent versions, this is not as important as it used to be. You can now also customize this option to nil to disable this confirmation completely. +--- +*** 'image-dired-thumb-size' increased to 128. + --- *** 'image-dired-thumb-(height|width)' are now obsolete. Customize 'image-dired-thumb-size' instead, which will set both the diff --git a/lisp/image/image-dired.el b/lisp/image/image-dired.el index f5725a53efe..c8921cc449d 100644 --- a/lisp/image/image-dired.el +++ b/lisp/image/image-dired.el @@ -233,12 +233,13 @@ original file with `image-dired-temp-rotate-image-file'." ('standard-large 256) ('standard-x-large 512) ('standard-xx-large 1024) - (_ 100)) + (_ 128)) "Default size of thumbnails in pixels. The value of this option is ignored if Image-Dired is customized to use the Thumbnail Managing Standard; the standard sizes will be used instead. See `image-dired-thumbnail-storage'." - :type 'natnum) + :type 'natnum + :version "29.1") (defcustom image-dired-thumb-relief 2 "Size of button-like border around thumbnails."