diff options
author | 2020-01-10 01:58:55 +0100 | |
---|---|---|
committer | 2020-01-10 01:58:55 +0100 | |
commit | e45497dfd6d401d8da74a8167b876a20690ddcac (patch) | |
tree | 617ba841d32009092589a96516deb0dea10c656d /native/src/layout.rs | |
parent | d15d1156bd0c7fa111d1c59bea11fd58b9cc63b1 (diff) | |
download | iced-e45497dfd6d401d8da74a8167b876a20690ddcac.tar.gz iced-e45497dfd6d401d8da74a8167b876a20690ddcac.tar.bz2 iced-e45497dfd6d401d8da74a8167b876a20690ddcac.zip |
Move `Debugger` and `Windowed` to a better location
We move `renderer::Debugger` to `layout::Debugger` and
`renderer::Windowed` to `window::Renderer`.
Diffstat (limited to 'native/src/layout.rs')
-rw-r--r-- | native/src/layout.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/layout.rs b/native/src/layout.rs index e945706b..4a3ab94a 100644 --- a/native/src/layout.rs +++ b/native/src/layout.rs @@ -1,9 +1,11 @@ //! Position your widgets properly. +mod debugger; mod limits; mod node; pub mod flex; +pub use debugger::Debugger; pub use limits::Limits; pub use node::Node; |