diff options
author | 2024-07-30 22:26:55 +0200 | |
---|---|---|
committer | 2024-07-30 22:26:55 +0200 | |
commit | fd593f8fb0c8476463f9c04ae2bcc96784b8c530 (patch) | |
tree | 8f9413a9b642aaaf6de091694d429def07966892 /runtime | |
parent | 8f335757192701c4d276016ec68da6aa34b6c568 (diff) | |
download | iced-fd593f8fb0c8476463f9c04ae2bcc96784b8c530.tar.gz iced-fd593f8fb0c8476463f9c04ae2bcc96784b8c530.tar.bz2 iced-fd593f8fb0c8476463f9c04ae2bcc96784b8c530.zip |
Return `window::Id` in `window::open`
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/window.rs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/runtime/src/window.rs b/runtime/src/window.rs index ee03f84f..cd27cdfe 100644 --- a/runtime/src/window.rs +++ b/runtime/src/window.rs @@ -218,12 +218,15 @@ pub fn close_requests() -> Subscription<Id> { /// Opens a new window with the given [`Settings`]; producing the [`Id`] /// of the new window on completion. -pub fn open(settings: Settings) -> Task<Id> { +pub fn open(settings: Settings) -> (Id, Task<Id>) { let id = Id::unique(); - task::oneshot(|channel| { - crate::Action::Window(Action::Open(id, settings, channel)) - }) + ( + id, + task::oneshot(|channel| { + crate::Action::Window(Action::Open(id, settings, channel)) + }), + ) } /// Closes the window with `id`. |