diff options
author | 2023-02-28 20:47:13 +0100 | |
---|---|---|
committer | 2023-02-28 20:47:13 +0100 | |
commit | 3f6e28fa9b1b8d911f765c9efb5249a9e0c942d5 (patch) | |
tree | 5dc0bd03ae19c9285c36017519a3b048f561620e /src/error.rs | |
parent | fd06de5d9c5afa05c5b11cda730b0769aef92caa (diff) | |
download | iced-3f6e28fa9b1b8d911f765c9efb5249a9e0c942d5.tar.gz iced-3f6e28fa9b1b8d911f765c9efb5249a9e0c942d5.tar.bz2 iced-3f6e28fa9b1b8d911f765c9efb5249a9e0c942d5.zip |
Use `iced_renderer` instead of `iced_graphics` in root crate
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.rs b/src/error.rs index 0bfa3ff1..5326718f 100644 --- a/src/error.rs +++ b/src/error.rs @@ -13,7 +13,7 @@ pub enum Error { /// The application graphics context could not be created. #[error("the application graphics context could not be created")] - GraphicsCreationFailed(iced_graphics::Error), + GraphicsCreationFailed(iced_renderer::Error), } impl From<iced_winit::Error> for Error { |