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` --- glutin/src/application.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'glutin/src/application.rs') 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( &mut proxy, &mut debug, &mut messages, + context.window(), ); // Update window -- cgit