Windows: implement with_resizable (#540) (#541)

* Windows: implement with_resizable (#540)

* Fixed typo
This commit is contained in:
Danny Fritz 2018-06-02 08:51:24 -06:00 committed by Francesca Frangipane
parent bbfe57400d
commit 58a00bffbb
5 changed files with 46 additions and 0 deletions

24
examples/no_resize.rs Normal file
View file

@ -0,0 +1,24 @@
extern crate winit;
fn main() {
let mut events_loop = winit::EventsLoop::new();
let _window = winit::WindowBuilder::new()
.with_title("A non-resizable window!")
.with_dimensions(200, 200)
.with_resizable(false)
.build(&events_loop)
.unwrap();
events_loop.run_forever(|event| {
println!("{:?}", event);
match event {
winit::Event::WindowEvent {
event: winit::WindowEvent::CloseRequested,
..
} => winit::ControlFlow::Break,
_ => winit::ControlFlow::Continue,
}
});
}