diff options
author | 2022-11-03 14:53:05 -0300 | |
---|---|---|
committer | 2023-01-09 11:28:07 -0800 | |
commit | 5e4e410b18eb744cf70ae1f18b9ef08611f59150 (patch) | |
tree | b9fb0e27d59c2e0177296f3eb642fa3337c1ddec /winit/src/multi_window.rs | |
parent | ac20f35c6245bbafffd4d047764fb04e66dcfe75 (diff) | |
download | iced-5e4e410b18eb744cf70ae1f18b9ef08611f59150.tar.gz iced-5e4e410b18eb744cf70ae1f18b9ef08611f59150.tar.bz2 iced-5e4e410b18eb744cf70ae1f18b9ef08611f59150.zip |
remove `windows` method (use commands instead)
Diffstat (limited to '')
-rw-r--r-- | winit/src/multi_window.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/winit/src/multi_window.rs b/winit/src/multi_window.rs index 1d71d801..c0c233c5 100644 --- a/winit/src/multi_window.rs +++ b/winit/src/multi_window.rs @@ -68,9 +68,6 @@ where /// The type of __messages__ your [`Program`] will produce. type Message: std::fmt::Debug + Send; - /// TODO(derezzedex) - fn windows(&self) -> Vec<(window::Id, settings::Window)>; - /// Handles a __message__ and updates the state of the [`Program`]. /// /// This is where you define your __update logic__. All the __messages__, @@ -459,7 +456,7 @@ async fn run_instance<A, E, C>( ); // Update window - state.synchronize(&application, &windows, &proxy); + state.synchronize(&application, &windows); let should_exit = application.should_exit(); |