mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(use-fancy-splash-screens-p): Use frame-height
instead of window-height. Pass frame to image-size.
This commit is contained in:
parent
b1c6aa6ebe
commit
a68ccb40d6
@ -1451,9 +1451,12 @@ we put it on this frame."
|
||||
(if (and (display-color-p)
|
||||
(image-type-available-p 'xpm))
|
||||
"splash.xpm" "splash.pbm"))))
|
||||
(image-height (and img (cdr (image-size img))))
|
||||
(window-height (1- (window-height (frame-selected-window frame)))))
|
||||
(> window-height (+ image-height 19)))))))
|
||||
(image-height (and img (cdr (image-size img nil frame))))
|
||||
;; We test frame-height so that, if the frame is split
|
||||
;; by displaying a warning, that doesn't cause the normal
|
||||
;; splash screen to be used.
|
||||
(frame-height (1- (frame-height frame))))
|
||||
(> frame-height (+ image-height 19)))))))
|
||||
|
||||
|
||||
(defun normal-splash-screen (&optional hide-on-input)
|
||||
|
Loading…
Reference in New Issue
Block a user