diff options
author | 2020-05-15 09:46:22 -0700 | |
---|---|---|
committer | 2020-05-26 16:56:34 -0700 | |
commit | 431171f975642fe96286f11fb75cd5b06827cc7f (patch) | |
tree | d7b49ae0bc76e2197dbae9feafd6a2a888c9a727 /native/src/widget.rs | |
parent | 6bf459e068043847a0ee1e1219056d3aced3f1cb (diff) | |
download | iced-431171f975642fe96286f11fb75cd5b06827cc7f.tar.gz iced-431171f975642fe96286f11fb75cd5b06827cc7f.tar.bz2 iced-431171f975642fe96286f11fb75cd5b06827cc7f.zip |
Rename and add to iced image module
Diffstat (limited to '')
-rw-r--r-- | native/src/widget.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index 23194545..46d41367 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -25,7 +25,7 @@ pub mod checkbox; pub mod column; pub mod container; pub mod image; -pub mod image_pane; +pub mod image_viewer; pub mod pane_grid; pub mod progress_bar; pub mod radio; @@ -48,7 +48,7 @@ pub use container::Container; #[doc(no_inline)] pub use image::Image; #[doc(no_inline)] -pub use image_pane::ImagePane; +pub use image_viewer::ImageViewer; #[doc(no_inline)] pub use pane_grid::PaneGrid; #[doc(no_inline)] |