Function: image-dired-thumbnail-window

image-dired-thumbnail-window is a byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-thumbnail-window)

Documentation

Return window where image-dired-thumbnail-buffer is visible.

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-thumbnail-window ()
  "Return window where `image-dired-thumbnail-buffer' is visible."
  (get-window-with-predicate
   (lambda (window)
     (equal (buffer-name (window-buffer window)) image-dired-thumbnail-buffer))
   nil t))