]> git.eshelyaron.com Git - emacs.git/commitdiff
Increase image-dired-thumb-size to 128
authorStefan Kangas <stefankangas@gmail.com>
Sat, 17 Sep 2022 22:21:12 +0000 (00:21 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 17 Sep 2022 22:21:12 +0000 (00:21 +0200)
* lisp/image/image-dired.el (image-dired-thumb-size): Increase default
to 128.

etc/NEWS
lisp/image/image-dired.el

index 8382d171cadaf11a7c0e6dffee2aba25dcbaddb6..effd02fead8c1d330aaa18e2c5a9211c957837ea 100644 (file)
--- 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
index f5725a53efee6323f69e36770353519343f7e068..c8921cc449ddaf4a661d040f9e011028ea48c440 100644 (file)
@@ -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."