diff options
author | 2024-08-12 05:50:22 +0200 | |
---|---|---|
committer | 2024-08-12 05:50:22 +0200 | |
commit | 8b45d620d048c33febbead4480d9ef62f196c9e1 (patch) | |
tree | 37c809127d05b157a5fdebed11a8a0b928daefff /runtime | |
parent | 22fc5ce0ea83b43cdccea26afd5e545880dfdaf4 (diff) | |
download | iced-8b45d620d048c33febbead4480d9ef62f196c9e1.tar.gz iced-8b45d620d048c33febbead4480d9ef62f196c9e1.tar.bz2 iced-8b45d620d048c33febbead4480d9ef62f196c9e1.zip |
Revert `window::close` producing a `window::Id`
Instead, subscribing to `window::close_events` is
preferable; since most use cases will want to react
to the user closing a window as well.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/window.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/src/window.rs b/runtime/src/window.rs index 0d280f1f..cd27cdfe 100644 --- a/runtime/src/window.rs +++ b/runtime/src/window.rs @@ -24,7 +24,7 @@ pub enum Action { Open(Id, Settings, oneshot::Sender<Id>), /// Close the window and exits the application. - Close(Id, oneshot::Sender<Id>), + Close(Id), /// Gets the [`Id`] of the oldest window. GetOldest(oneshot::Sender<Option<Id>>), @@ -230,8 +230,8 @@ pub fn open(settings: Settings) -> (Id, Task<Id>) { } /// Closes the window with `id`. -pub fn close(id: Id) -> Task<Id> { - task::oneshot(|channel| crate::Action::Window(Action::Close(id, channel))) +pub fn close<T>(id: Id) -> Task<T> { + task::effect(crate::Action::Window(Action::Close(id))) } /// Gets the window [`Id`] of the oldest window. |