diff options
Diffstat (limited to 'graphics/src/widget/space.rs')
-rw-r--r-- | graphics/src/widget/space.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/graphics/src/widget/space.rs b/graphics/src/widget/space.rs index 1f31eabe..a4d60d4b 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()) - } -} |