GNU bug report logs -
#25542
25.1; Restoring the frame from fullscreen to maximized
Previous Next
Reported by: Dani Moncayo <dmoncayo <at> gmail.com>
Date: Thu, 26 Jan 2017 08:16:02 UTC
Severity: normal
Found in version 25.1
Done: Ken Brown <kbrown <at> cornell.edu>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
>> (2) Does 'toggle-frame-fullscreen' the second time when you type F11
>> correctly call
>>
>> (set-frame-parameter frame 'fullscreen fullscreen-restore)
>>
>> with 'fullscreen-restore' equal to 'maximized' at all?
>
> No. The value of 'fullscreen-restore' is nil. But if I repeat the experiment with the taskbar on the bottom, the value of fullscreen-restore is 'maximized'.
Thanks for telling me what I forgot to ask. IIUC this means that after
maximizing the frame with the mouse, the value of
(frame-parameter nil 'fullscreen)
is nil. Correct? And what is its value if, instead, you maximize the
frame via 'toggle-frame-maximized'?
In either case the bug should be a consequence of the earlier mentioned
if (x < 0 && y < 0)
store_frame_param (f, Qfullscreen, Qmaximized);
so we do not remember in the fullscreen parameter that the frame has
been maximized. Apparently some check _is_ needed (why?) so probably
using
if (x < 0 || y < 0)
store_frame_param (f, Qfullscreen, Qmaximized);
instead will fix it. Can you try that (as I said elsewhere it will then
fail for borderless, maximized frames)?
martin
This bug report was last modified 4 years and 258 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.