Remove unimplemented resize handler

It doesn't seem to be necessary at all with glium.
This commit is contained in:
Joonas Javanainen 2017-07-30 18:47:43 +03:00
parent a707af1511
commit 51329d5938
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179

View File

@ -37,7 +37,6 @@ pub fn run<F: FnMut(&Ui) -> bool>(title: String, clear_color: [f32; 4], mut run_
if let Event::WindowEvent { event, .. } = event {
match event {
Resized(_, _) => unimplemented!(),
Closed => quit = true,
KeyboardInput { input, .. } => {
use glium::glutin::VirtualKeyCode as Key;