Fix imports in application modules
This commit is contained in:
parent
08c771fa70
commit
0648d9d234
2 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue