help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Changing frame size after going fullscreen


From: Robert Pluim
Subject: Re: Changing frame size after going fullscreen
Date: Wed, 12 Jul 2023 19:13:18 +0200

>>>>> On Wed, 12 Jul 2023 16:45:47 +0000, uzibalqa <uzibalqa@proton.me> said:

    uzibalqa> After calling 

    uzibalqa> (set-frame-parameter nil 'fullscreen 'fullboth)

    uzibalqa> I cannot then change to some other specific frame size

    uzibalqa> (modify-frame-parameters nil '((width . 73) (height . 23)))

`modify-frame-parameters' changes the parameters, but the existing
ones remain, so you need to unset the 'fullscreen parameter first:

    (modify-frame-parameters nil '((fullscreen . nil)))
    (modify-frame-parameters nil '((width . 73) (height . 23)))

Robert
-- 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]