Fix imports in application modules

This commit is contained in:
Héctor Ramón Jiménez 2021-11-29 14:43:07 +07:00
parent 08c771fa70
commit 0648d9d234
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,6 @@ use iced_winit::futures;
use iced_winit::futures::channel::mpsc;
use iced_winit::{Cache, Clipboard, Debug, Proxy, Settings};
use crate::glutin::platform::run_return::EventLoopExtRunReturn;
use glutin::window::Window;
use std::mem::ManuallyDrop;
@ -29,6 +28,7 @@ where
use futures::task;
use futures::Future;
use glutin::event_loop::EventLoop;
use glutin::platform::run_return::EventLoopExtRunReturn;
use glutin::ContextBuilder;
let mut debug = Debug::new();

View file

@ -17,7 +17,6 @@ use iced_graphics::window;
use iced_native::program::Program;
use iced_native::{Cache, UserInterface};
use crate::winit::platform::run_return::EventLoopExtRunReturn;
use std::mem::ManuallyDrop;
/// An interactive, native cross-platform application.
@ -116,6 +115,7 @@ where
use futures::task;
use futures::Future;
use winit::event_loop::EventLoop;
use winit::platform::run_return::EventLoopExtRunReturn;
let mut debug = Debug::new();
debug.startup_started();