From c5f4bebeda8d6ef10efade7933a5ee58f06b62d1 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 20 Jun 2024 01:13:42 +0200 Subject: Remove `window::Id::MAIN` constant --- examples/multi_window/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/multi_window/src') diff --git a/examples/multi_window/src/main.rs b/examples/multi_window/src/main.rs index dfb816cf..98e753ab 100644 --- a/examples/multi_window/src/main.rs +++ b/examples/multi_window/src/main.rs @@ -57,7 +57,7 @@ impl Example { return Task::none(); }; - window::fetch_position(*last_window) + window::get_position(*last_window) .then(|last_position| { let position = last_position.map_or( window::Position::Default, -- cgit