-
Notifications
You must be signed in to change notification settings - Fork 930
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Window::get_fullscreen() -> bool #579
Comments
The way I'd want to address this is similar to #208, since:
So I'd go with |
Thanks, that all makes sense. |
Are there any WMs you recommend for testing this? |
Not sure if your asking me directly? I only use i3. |
set_fullscreen
takes anOption<WindowId>
.However we dont need to make
get_fullscreen()
return anOption<WindowId>
because we can useget_current_monitor() -> WindowId
instead.The window manager (at least on X11) can set the fullscreen state so just remembering the state in winit will not be enough.
The text was updated successfully, but these errors were encountered: