summaryrefslogtreecommitdiffstats
path: root/web/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-09-24 15:15:34 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-09-24 15:15:34 +0200
commit5e28f80af8349be2638eb80d2a06c81fd14d631c (patch)
tree946817e16775e4ea0a062b4d22f5efd46c655a21 /web/src/lib.rs
parentc08171e89e9336f87a7eb27881897cfa34529125 (diff)
downloadiced-5e28f80af8349be2638eb80d2a06c81fd14d631c.tar.gz
iced-5e28f80af8349be2638eb80d2a06c81fd14d631c.tar.bz2
iced-5e28f80af8349be2638eb80d2a06c81fd14d631c.zip
Improve documentation
Diffstat (limited to '')
-rw-r--r--web/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs
index 09ca3460..caf17df5 100644
--- a/web/src/lib.rs
+++ b/web/src/lib.rs
@@ -4,11 +4,11 @@ use std::cell::RefCell;
mod bus;
mod element;
-mod widget;
+pub mod widget;
pub use bus::Bus;
pub use element::Element;
-pub use iced_core::{Align, Color, Length};
+pub use iced_core::{Align, Color, Justify, Length};
pub use widget::*;
pub trait UserInterface {