diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-10-13 18:33:10 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-10-23 20:22:47 +0200 |
| commit | 1e74f7c407e42174b631cb7477f3c88252da7e25 (patch) | |
| tree | 53c0510b6503c434c9ba470b188d9e737ce1c3cf /src/layout/mod.rs | |
| parent | 5f4dde0a6b32c7620b29af30f69591cf3995af9b (diff) | |
New `ShapeNode`
Replaces `BackgroundNode` and `FixedNode`
Diffstat (limited to 'src/layout/mod.rs')
| -rw-r--r-- | src/layout/mod.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 1ca9001d..cd59e3d2 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -1,8 +1,6 @@ //! Layouting. -mod background; mod constraints; -mod fixed; mod frame; mod grid; mod image; @@ -11,14 +9,13 @@ mod incremental; mod pad; mod par; mod regions; +mod shape; mod shaping; mod stack; mod tree; pub use self::image::*; -pub use background::*; pub use constraints::*; -pub use fixed::*; pub use frame::*; pub use grid::*; #[cfg(feature = "layout-cache")] @@ -26,6 +23,7 @@ pub use incremental::*; pub use pad::*; pub use par::*; pub use regions::*; +pub use shape::*; pub use shaping::*; pub use stack::*; pub use tree::*; |
