diff options
author | 2021-02-13 16:05:51 +0100 | |
---|---|---|
committer | 2021-02-13 16:05:51 +0100 | |
commit | e1b1227f0c2214b0ade4004b7985a137e7d56890 (patch) | |
tree | 849fcf5f863ff9067d22b38104137b58bfa54720 /glow/src/backend.rs | |
parent | 8f126c212b887b2621cd8220bc4a52ba4febb1eb (diff) | |
download | iced-e1b1227f0c2214b0ade4004b7985a137e7d56890.tar.gz iced-e1b1227f0c2214b0ade4004b7985a137e7d56890.tar.bz2 iced-e1b1227f0c2214b0ade4004b7985a137e7d56890.zip |
Fix `image` feature name in `glow` and `iced`
Diffstat (limited to '')
-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 390ffbe5..92bb993e 100644 --- a/glow/src/backend.rs +++ b/glow/src/backend.rs @@ -208,7 +208,7 @@ impl backend::Text for Backend { } } -#[cfg(feature = "image_rs")] +#[cfg(feature = "image")] impl backend::Image for Backend { fn dimensions(&self, _handle: &iced_native::image::Handle) -> (u32, u32) { (50, 50) |