diff options
author | 2020-05-19 20:01:55 +0200 | |
---|---|---|
committer | 2020-05-19 20:01:55 +0200 | |
commit | 4aed0fa4b6d63b739b5557ef16f6077988cd2758 (patch) | |
tree | 2b773d818e745ee33015f904b8a748c50d7f2cfc /src | |
parent | a0ac09122a68d9be7d11e5cc765f52cb526ae913 (diff) | |
download | iced-4aed0fa4b6d63b739b5557ef16f6077988cd2758.tar.gz iced-4aed0fa4b6d63b739b5557ef16f6077988cd2758.tar.bz2 iced-4aed0fa4b6d63b739b5557ef16f6077988cd2758.zip |
Rename `window::Backend` to `Compositor`
Diffstat (limited to 'src')
-rw-r--r-- | src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.rs b/src/application.rs index 689332f1..0ae2ec55 100644 --- a/src/application.rs +++ b/src/application.rs @@ -216,7 +216,7 @@ impl<A> iced_winit::Application for Instance<A> where A: Application, { - type Backend = iced_wgpu::window::Backend; + type Compositor = iced_wgpu::window::Compositor; type Executor = A::Executor; type Flags = A::Flags; type Message = A::Message; |