From c96492b95660640eb2dd66a77c96ad32d5d5b0ae Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 16 Jan 2020 05:54:22 +0100 Subject: Expose `window::Mode` in `iced` Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side. --- native/src/window.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'native/src/window.rs') diff --git a/native/src/window.rs b/native/src/window.rs index 7e30c782..db9226dc 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -1,8 +1,6 @@ //! Build window-based GUI applications. mod event; -mod mode; mod renderer; pub use event::Event; -pub use mode::Mode; pub use renderer::{Renderer, Target}; -- cgit