diff options
author | 2022-11-03 14:53:05 -0300 | |
---|---|---|
committer | 2023-01-09 11:28:07 -0800 | |
commit | 5e4e410b18eb744cf70ae1f18b9ef08611f59150 (patch) | |
tree | b9fb0e27d59c2e0177296f3eb642fa3337c1ddec /glutin/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-- | glutin/src/multi_window.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glutin/src/multi_window.rs b/glutin/src/multi_window.rs index 095e0e2c..2ac7f636 100644 --- a/glutin/src/multi_window.rs +++ b/glutin/src/multi_window.rs @@ -515,7 +515,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(); |