summaryrefslogtreecommitdiff
path: root/lisp/image-dired.el
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2016-12-02 16:53:02 -0500
committerMark Oteiza <mvoteiza@udel.edu>2016-12-03 00:58:26 -0500
commit143a4306759a91e84b486a9e4c52f83d96d8d23d (patch)
treea686fba28b8dd39a20b85bb2c9068d71492ff105 /lisp/image-dired.el
parent5e915691ff097668b60c715cd39ab87975fc3000 (diff)
downloademacs-143a4306759a91e84b486a9e4c52f83d96d8d23d.tar.gz
Display window before calculating width
* lisp/image-dired.el (image-dired-display-thumbs): Display the buffer before calling image-dired-line-up and friends, which in turn calculate the window width. Otherwise, the thumbnail layout will be wrong in a side-by-side split.
Diffstat (limited to 'lisp/image-dired.el')
-rw-r--r--lisp/image-dired.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index 714182ae25f..67fbc029236 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -854,6 +854,9 @@ thumbnail buffer to be selected."
(message "Thumb could not be created for file %s" curr-file)
(image-dired-insert-thumbnail thumb-name curr-file dired-buf)))
files))
+ (if do-not-pop
+ (display-buffer buf)
+ (pop-to-buffer buf))
(cond ((eq 'dynamic image-dired-line-up-method)
(image-dired-line-up-dynamic))
((eq 'fixed image-dired-line-up-method)
@@ -863,10 +866,7 @@ thumbnail buffer to be selected."
((eq 'none image-dired-line-up-method)
nil)
(t
- (image-dired-line-up-dynamic))))
- (if do-not-pop
- (display-buffer image-dired-thumbnail-buffer)
- (pop-to-buffer image-dired-thumbnail-buffer))))
+ (image-dired-line-up-dynamic))))))
;;;###autoload
(defun image-dired-show-all-from-dir (dir)