]> git.eshelyaron.com Git - emacs.git/commitdiff
Double value of image-dired-show-all-from-dir-max-files
authorStefan Kangas <stefan@marxist.se>
Mon, 25 Oct 2021 03:47:56 +0000 (05:47 +0200)
committerStefan Kangas <stefan@marxist.se>
Mon, 25 Oct 2021 05:38:19 +0000 (07:38 +0200)
* lisp/image-dired.el (image-dired-show-all-from-dir-max-files):
Double the amount of files in directory before prompting.  This could
be even higher, as the thumbnails are generated asynchronously and are
small by default.

lisp/image-dired.el

index e2aba710c1a0245159398727b98ee02ed9982d97..210361f6038ce6d1ed1a638d48bac0f71b462fe6 100644 (file)
@@ -556,10 +556,12 @@ Including parameters.  Used when displaying original image from
 Used by `image-dired-copy-with-exif-file-name'."
   :type 'string)
 
-(defcustom image-dired-show-all-from-dir-max-files 50
-  "Maximum number of files to show using `image-dired-show-all-from-dir'
-before warning."
-  :type 'integer)
+(defcustom image-dired-show-all-from-dir-max-files 100
+  "Maximum number of files in directory before prompting.
+If there are more files than this in a selected directory, the
+`image-dired-show-all-from-dir' command will show a prompt."
+  :type 'integer
+  :version "29.1")
 
 (defmacro image-dired--with-db-file (&rest body)
   "Run BODY in a temp buffer containing `image-dired-db-file'.