diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-10-17 17:35:15 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-10-23 20:24:35 +0200 |
| commit | b42ecbd6a67d6af42f06c52c290d88e176cee0ea (patch) | |
| tree | 578e983db4ebfc259fdd109f79c92a7f22b7dd8b /src/layout/mod.rs | |
| parent | 5becb32ba463d6b0ace914ab06bb237483a94fbc (diff) | |
Simplify decorations
Diffstat (limited to 'src/layout/mod.rs')
| -rw-r--r-- | src/layout/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 5c5e2ffd..d0313778 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -1,6 +1,7 @@ //! Layouting. mod constraints; +mod deco; mod frame; mod grid; mod image; @@ -15,6 +16,7 @@ mod text; pub use self::image::*; pub use constraints::*; +pub use deco::*; pub use frame::*; pub use grid::*; #[cfg(feature = "layout-cache")] |
