remove re-export on viewer::State

This commit is contained in:
Cory Forsstrom 2020-05-27 14:20:07 -07:00
parent 5dd62bacd5
commit c7bb434113
No known key found for this signature in database
GPG key ID: 64D6B5851FFCAC9E
3 changed files with 10 additions and 5 deletions

View file

@ -30,7 +30,9 @@ mod platform {
#[cfg_attr(docsrs, doc(cfg(feature = "image")))]
pub mod image {
//! Display images in your user interface.
pub use iced_winit::image::{Handle, Image, State, Viewer};
pub use iced_winit::image::{Handle, Image, Viewer};
pub use iced_winit::image::viewer;
}
#[cfg_attr(docsrs, doc(cfg(feature = "svg")))]