From 721e08cfc60662f4b9c9a04e94928fa605f63415 Mon Sep 17 00:00:00 2001 From: Ian Mason Date: Mon, 29 Aug 2022 18:43:22 -0700 Subject: [PATCH] Fix warning --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 3931984..1f8b7b7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -377,7 +377,7 @@ async fn main() { .title(title_string) .window_size((400.0, 400.0)); let app_launcher = AppLauncher::with_window(main_window); - let external_handler = app_launcher.get_external_handle(); + let _external_handler = app_launcher.get_external_handle(); app_launcher.launch(1).unwrap(); // AppLauncher::with_window(main_window).launch(1).unwrap();