summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-09-02 16:30:14 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-09-02 16:30:14 +0700
commit7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51 (patch)
treebd07aaa553b5163f91073f19a58a76a4a3fed03b /src
parent6fce35393fb2dc3dcbc5f423fa8472f5ce1f7027 (diff)
downloadiced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.tar.gz
iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.tar.bz2
iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.zip
Implement `move_to` and `resize` commands for `window`
Diffstat (limited to 'src')
-rw-r--r--src/window.rs3
1 files changed, 3 insertions, 0 deletions
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};