1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 21:30:03 -04:00

Remove dropping files from emigui Input

This commit is contained in:
Emil Ernerfeldt
2020-05-21 11:53:26 +02:00
parent 025fae5586
commit 555d7aed20
3 changed files with 0 additions and 23 deletions

View File

@@ -32,9 +32,6 @@ pub fn input_event(
glutin::Event::WindowEvent { event, .. } => match event {
CloseRequested | Destroyed => *running = false,
DroppedFile(path) => raw_input.dropped_files.push(path),
HoveredFile(path) => raw_input.hovered_files.push(path),
Resized(glutin::dpi::LogicalSize { width, height }) => {
raw_input.screen_size = vec2(width as f32, height as f32);
}