diff options
Diffstat (limited to 'graphics/src/widget/space.rs')
-rw-r--r-- | graphics/src/widget/space.rs | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/graphics/src/widget/space.rs b/graphics/src/widget/space.rs index 1f31eabe..77e93dbb 100644 --- a/graphics/src/widget/space.rs +++ b/graphics/src/widget/space.rs @@ -1,15 +1 @@ -use crate::{Backend, Primitive, Renderer}; -use iced_native::mouse; -use iced_native::space; -use iced_native::Rectangle; - -pub use iced_native::Space; - -impl<B> space::Renderer for Renderer<B> -where - B: Backend, -{ - fn draw(&mut self, _bounds: Rectangle) -> Self::Output { - (Primitive::None, mouse::Interaction::default()) - } -} +pub use iced_native::widget::Space; |