diff options
author | 2019-12-31 11:36:54 +0100 | |
---|---|---|
committer | 2019-12-31 11:36:54 +0100 | |
commit | fb9cc0262b30a953e8188897b74abb5106ea1fd8 (patch) | |
tree | 11a64f9c7e007f6992250c3d7f0b9c1d1b3c63a6 /winit/src | |
parent | 8caa66be2708b1c83e20d905d69902c2567c4692 (diff) | |
download | iced-fb9cc0262b30a953e8188897b74abb5106ea1fd8.tar.gz iced-fb9cc0262b30a953e8188897b74abb5106ea1fd8.tar.bz2 iced-fb9cc0262b30a953e8188897b74abb5106ea1fd8.zip |
Draft basic styling for `Container`
Diffstat (limited to 'winit/src')
-rw-r--r-- | winit/src/application.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winit/src/application.rs b/winit/src/application.rs index 56f17573..02fa3780 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -1,5 +1,5 @@ use crate::{ - conversion, + container, conversion, input::{keyboard, mouse}, renderer::{Target, Windowed}, subscription, Cache, Clipboard, Command, Container, Debug, Element, Event, @@ -18,7 +18,7 @@ pub trait Application: Sized { /// The renderer to use to draw the [`Application`]. /// /// [`Application`]: trait.Application.html - type Renderer: Windowed; + type Renderer: Windowed + container::Renderer; /// The type of __messages__ your [`Application`] will produce. /// |