From 7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 2 Sep 2021 16:30:14 +0700 Subject: Implement `move_to` and `resize` commands for `window` --- src/window.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/window.rs b/src/window.rs index 7d441062..71158816 100644 --- a/src/window.rs +++ b/src/window.rs @@ -9,3 +9,6 @@ pub use icon::Icon; pub use mode::Mode; pub use position::Position; pub use settings::Settings; + +#[cfg(not(target_arch = "wasm32"))] +pub use crate::runtime::window::{move_to, resize}; -- cgit