summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/image.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 21:00:40 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-05-19 21:00:40 +0200
commite6180912488db4d59fbffcb46c5930282306cb92 (patch)
treef41c7ee830a8765b3795c8b6d012c7c621927cca /graphics/src/widget/image.rs
parentc2e0c52ce031ffe1c300b3cfa362b0e445ac5afd (diff)
downloadiced-e6180912488db4d59fbffcb46c5930282306cb92.tar.gz
iced-e6180912488db4d59fbffcb46c5930282306cb92.tar.bz2
iced-e6180912488db4d59fbffcb46c5930282306cb92.zip
Merge unnecessary split widget modules
Diffstat (limited to '')
-rw-r--r--graphics/src/widget/image.rs (renamed from graphics/src/renderer/widget/image.rs)2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/src/renderer/widget/image.rs b/graphics/src/widget/image.rs
index 3092237f..79d82cb1 100644
--- a/graphics/src/renderer/widget/image.rs
+++ b/graphics/src/widget/image.rs
@@ -4,6 +4,8 @@ use iced_native::image;
use iced_native::mouse;
use iced_native::Layout;
+pub use iced_native::Image;
+
impl<B> image::Renderer for Renderer<B>
where
B: Backend + backend::Image,