diff options
author | 2021-10-31 16:24:31 +0700 | |
---|---|---|
committer | 2021-10-31 16:24:31 +0700 | |
commit | 9a3c81f336b8e29c64471026860f3c9d8b56348c (patch) | |
tree | cc95c6212655d908b7d2c2e564b4bcfd28b67167 /wgpu/src/image.rs | |
parent | c4186a71b746b603984e5fe1926a8cef6e8dcfcb (diff) | |
download | iced-9a3c81f336b8e29c64471026860f3c9d8b56348c.tar.gz iced-9a3c81f336b8e29c64471026860f3c9d8b56348c.tar.bz2 iced-9a3c81f336b8e29c64471026860f3c9d8b56348c.zip |
Introduce first-class `svg` module in `iced_native`
Diffstat (limited to '')
-rw-r--r-- | wgpu/src/image.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/image.rs b/wgpu/src/image.rs index 01af2571..a59dc04b 100644 --- a/wgpu/src/image.rs +++ b/wgpu/src/image.rs @@ -20,7 +20,7 @@ use bytemuck::{Pod, Zeroable}; use iced_native::image; #[cfg(feature = "svg")] -use iced_native::widget::svg; +use iced_native::svg; #[derive(Debug)] pub struct Pipeline { |