diff options
author | 2019-08-29 01:28:00 +0200 | |
---|---|---|
committer | 2019-08-29 01:28:00 +0200 | |
commit | fafad2dfcab3b6bb11a705af61faf54e07e29773 (patch) | |
tree | 92907a5567d44dc30e09565ffb2a6c2c5337cd77 /src/lib.rs | |
parent | 268a5f00171820ff1d3da7de03b5efab5e45c01d (diff) | |
download | iced-fafad2dfcab3b6bb11a705af61faf54e07e29773.tar.gz iced-fafad2dfcab3b6bb11a705af61faf54e07e29773.tar.bz2 iced-fafad2dfcab3b6bb11a705af61faf54e07e29773.zip |
Write `renderer` docs and fix broken links
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -197,6 +197,7 @@ #![deny(unsafe_code)] #![deny(rust_2018_idioms)] pub mod input; +pub mod renderer; pub mod widget; mod element; @@ -207,7 +208,6 @@ mod mouse_cursor; mod node; mod point; mod rectangle; -mod renderer; mod style; mod user_interface; mod vector; @@ -223,7 +223,6 @@ pub use mouse_cursor::MouseCursor; pub use node::Node; pub use point::Point; pub use rectangle::Rectangle; -pub use renderer::Renderer; pub use style::{Align, Justify, Style}; pub use user_interface::{Cache, UserInterface}; pub(crate) use vector::Vector; |