We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How's this code not working?
let mut window: Window = WindowSettings::new( "spinning-square", [200, 200] ) .opengl(opengl) .exit_on_esc(true) .resizable(false) .build() .unwrap();
I added .resizable(false) but the window is still resizable...
.resizable(false)
The text was updated successfully, but these errors were encountered:
Add use glutin_window::GlutinWindow as Window;.
use glutin_window::GlutinWindow as Window;
Sorry, something went wrong.
@bvssvni that code is already there:
https://github.com/PistonDevelopers/Piston-Tutorials/blob/master/getting-started/src/main.rs#L9
Window resizing is still enabled, with my call to .resizable(false)
No branches or pull requests
How's this code not working?
I added
.resizable(false)
but the window is still resizable...The text was updated successfully, but these errors were encountered: