summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-30 22:26:55 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-30 22:26:55 +0200
commitfd593f8fb0c8476463f9c04ae2bcc96784b8c530 (patch)
tree8f9413a9b642aaaf6de091694d429def07966892 /runtime
parent8f335757192701c4d276016ec68da6aa34b6c568 (diff)
downloadiced-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.rs11
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`.