GNU bug report logs - #7004
23.2; In fullscreen mode, the echo area takes too much vertical space

Previous Next

Package: emacs;

Reported by: Dani Moncayo <dmoncayo <at> gmail.com>

Date: Thu, 9 Sep 2010 15:13:02 UTC

Severity: minor

Merged with 15046

Found in versions 23.2, 24.3.50

Fixed in version 24.4

Done: Glenn Morris <rgm <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Jan Djärv <jan.h.d <at> swipnet.se>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#7004: closed (23.2; In fullscreen mode, the echo area takes
 too much vertical space)
Date: Fri, 10 Sep 2010 09:00:03 +0000
[Message part 1 (text/plain, inline)]
Your message dated Fri, 10 Sep 2010 11:01:23 +0200
with message-id <4C89F3E3.6080804 <at> swipnet.se>
and subject line Re: bug#7004: 23.2; In fullscreen mode, the echo area takes too much vertical space
has caused the GNU bug report #7004,
regarding 23.2; In fullscreen mode, the echo area takes too much vertical space
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
7004: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7004
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Dani Moncayo <dmoncayo <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 23.2; In fullscreen mode, the echo area takes too much vertical space
Date: Thu, 9 Sep 2010 17:14:34 +0200
[Message part 3 (text/plain, inline)]
When I put Emacs in fullscreen mode, it seems to me that the last line (echo
area/minibuffer) takes too much, unnecessary vertical space.

Test conditions:
 - emacs-version => "GNU Emacs 23.2.1 (i686-pc-linux-gnu, GTK+ Version
2.20.1) of 2010-07-31 on jesus-desktop".
 - OS: Ubuntu 10.04 (32 bits CPU).

To reproduce the bug:
 1.- Start Emacs in fullscreen: "emacs -Q -fs" (see "fullscreen.png"). Here
you will see the echo area too high.
 2.- Now, to compare, start Emacs in normal window: "emacs -Q" (see
"normal-window.png"). Here you will see the echo area properly dimensioned.


Another (i think easier) way to reproduce the bug: switch from normal window
to fullscreen mode, by using the following Elisp function:

> (defun toggle-fullscreen ()
>  (interactive)
>  (let ((current-value (frame-parameter nil 'fullscreen)))
>     (set-frame-parameter nil 'fullscreen
>             (if (equal current-value 'fullboth)
>                 (if (boundp 'old-fullscreen) old-fullscreen nil)
>               (progn (setq old-fullscreen current-value)
>                  'fullboth)))))
>
; optional shortcut
> (global-set-key [f11] 'toggle-fullscreen)
>
[Message part 4 (text/html, inline)]
[fullscreen.png (image/png, attachment)]
[normal-window.png (image/png, attachment)]
[Message part 7 (message/rfc822, inline)]
From: Jan Djärv <jan.h.d <at> swipnet.se>
To: Dani Moncayo <dmoncayo <at> gmail.com>
Cc: 7004-done <at> debbugs.gnu.org
Subject: Re: bug#7004: 23.2; In fullscreen mode, the echo area takes too much
	vertical space
Date: Fri, 10 Sep 2010 11:01:23 +0200
Please do not post in html.

From your picture:
The height of tool bar + menu bar is 73 pixels.
Your font height is 17 pixels.

(1024 - 73)/17 = 55.94117

The remnant (0.94117) is just wasted space, no whole line can be made to fit 
in to it so it shows up at the botton as unused space.  Any window height that 
isn't an integral of the font height will show like this.

There is no bug here,

	Jan D.

2010-09-09 17:14, Dani Moncayo skrev:
>
> When I put Emacs in fullscreen mode, it seems to me that the last line
> (echo area/minibuffer) takes too much, unnecessary vertical space.
>
> Test conditions:
>   - emacs-version => "GNU Emacs 23.2.1 (i686-pc-linux-gnu, GTK+ Version
> 2.20.1) of 2010-07-31 on jesus-desktop".
>   - OS: Ubuntu 10.04 (32 bits CPU).
>
> To reproduce the bug:
>   1.- Start Emacs in fullscreen: "emacs -Q -fs" (see "fullscreen.png").
> Here you will see the echo area too high.
>   2.- Now, to compare, start Emacs in normal window: "emacs -Q" (see
> "normal-window.png"). Here you will see the echo area properly dimensioned.
>
>
> Another (i think easier) way to reproduce the bug: switch from normal
> window to fullscreen mode, by using the following Elisp function:
>
>     (defun toggle-fullscreen ()
>       (interactive)
>       (let ((current-value (frame-parameter nil 'fullscreen)))
>          (set-frame-parameter nil 'fullscreen
>                  (if (equal current-value 'fullboth)
>                      (if (boundp 'old-fullscreen) old-fullscreen nil)
>                    (progn (setq old-fullscreen current-value)
>     'fullboth)))))
>
>     ; optional shortcut
>     (global-set-key [f11] 'toggle-fullscreen)
>
>
>
>
>
>
>
>



This bug report was last modified 11 years and 188 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.