From c9711ff48fa1ad16365bc7eb37fa7153143bcee6 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 2 Sep 2021 13:46:01 +0700 Subject: Handle `clipboard::Action` in `iced_winit` shell --- winit/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winit/src/lib.rs') diff --git a/winit/src/lib.rs b/winit/src/lib.rs index 1707846a..12df9d8e 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -25,10 +25,10 @@ pub use iced_native::*; pub use winit; pub mod application; +pub mod clipboard; pub mod conversion; pub mod settings; -mod clipboard; mod error; mod mode; mod position; -- cgit 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` --- winit/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'winit/src/lib.rs') diff --git a/winit/src/lib.rs b/winit/src/lib.rs index 12df9d8e..30813152 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -28,6 +28,7 @@ pub mod application; pub mod clipboard; pub mod conversion; pub mod settings; +pub mod window; mod error; mod mode; -- cgit