From e45497dfd6d401d8da74a8167b876a20690ddcac Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 10 Jan 2020 01:58:55 +0100 Subject: Move `Debugger` and `Windowed` to a better location We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`. --- native/src/layout.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'native/src/layout.rs') 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; -- cgit