diff options
author | 2021-09-02 16:30:14 +0700 | |
---|---|---|
committer | 2021-09-02 16:30:14 +0700 | |
commit | 7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51 (patch) | |
tree | bd07aaa553b5163f91073f19a58a76a4a3fed03b /glutin/src/application.rs | |
parent | 6fce35393fb2dc3dcbc5f423fa8472f5ce1f7027 (diff) | |
download | iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.tar.gz iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.tar.bz2 iced-7cb6e7438f7fb5d0d8be4528a31b888e2b12cd51.zip |
Implement `move_to` and `resize` commands for `window`
Diffstat (limited to 'glutin/src/application.rs')
-rw-r--r-- | glutin/src/application.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/glutin/src/application.rs b/glutin/src/application.rs index cef49ea0..936f0cce 100644 --- a/glutin/src/application.rs +++ b/glutin/src/application.rs @@ -96,6 +96,7 @@ where &mut runtime, &mut clipboard, &mut proxy, + context.window(), ); runtime.track(subscription); @@ -225,6 +226,7 @@ async fn run_instance<A, E, C>( &mut proxy, &mut debug, &mut messages, + context.window(), ); // Update window |