You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the context of #3435, I noticed that ffi-window-{un,}maximize could be greatly simplified. Instead of defining two generics, there could be a single one that gets the maximized state of the window and a setf method that mutates it.
The same reasoning holds for ffi-window-fullscreen.
In the context of #3435, I noticed that
ffi-window-{un,}maximize
could be greatly simplified. Instead of defining two generics, there could be a single one that gets the maximized state of the window and asetf
method that mutates it.The same reasoning holds for
ffi-window-fullscreen
.To get the fullscreen state:
(gdk:gdk-window-get-state (gtk:gtk-widget-window (nyxt/renderer/gtk::gtk-object window)))
To get the maximized state (either as above or):
(gtk:gtk-window-is-maximized (nyxt/renderer/gtk::gtk-object window))
The text was updated successfully, but these errors were encountered: