all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Changing frame size after going fullscreen
@ 2023-07-12 16:45 uzibalqa
  2023-07-12 17:13 ` Robert Pluim
  0 siblings, 1 reply; 2+ messages in thread
From: uzibalqa @ 2023-07-12 16:45 UTC (permalink / raw)
  To: uzibalqa via Users list for the GNU Emacs text editor


After calling 

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

I cannot then change to some other specific frame size

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





^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Changing frame size after going fullscreen
  2023-07-12 16:45 Changing frame size after going fullscreen uzibalqa
@ 2023-07-12 17:13 ` Robert Pluim
  0 siblings, 0 replies; 2+ messages in thread
From: Robert Pluim @ 2023-07-12 17:13 UTC (permalink / raw)
  To: uzibalqa; +Cc: help-gnu-emacs

>>>>> 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
-- 



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-07-12 17:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-12 16:45 Changing frame size after going fullscreen uzibalqa
2023-07-12 17:13 ` Robert Pluim

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.