diff options
author | 2021-10-31 16:24:31 +0700 | |
---|---|---|
committer | 2021-10-31 16:24:31 +0700 | |
commit | 9a3c81f336b8e29c64471026860f3c9d8b56348c (patch) | |
tree | cc95c6212655d908b7d2c2e564b4bcfd28b67167 /glow | |
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 'glow')
-rw-r--r-- | glow/src/backend.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glow/src/backend.rs b/glow/src/backend.rs index 337d2e17..5ab7f922 100644 --- a/glow/src/backend.rs +++ b/glow/src/backend.rs @@ -246,7 +246,7 @@ impl backend::Image for Backend { impl backend::Svg for Backend { fn viewport_dimensions( &self, - _handle: &iced_native::widget::svg::Handle, + _handle: &iced_native::svg::Handle, ) -> (u32, u32) { (50, 50) } |