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. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 1ef11378..759dea2f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -189,6 +189,7 @@ mod platform; mod sandbox; pub mod settings; +pub mod window; pub use application::Application; pub use platform::*; -- cgit