summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-06-28 23:24:29 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-06-28 23:24:29 +0200
commit2ac80f8e9ccbcb8538ca6e613488c3b0eb9ef124 (patch)
treef8224f2a934fb7b41149ffa0fe1d694c9d873a57 /runtime
parentb9eb86199afe0f2d936eb4ab90af5b2a2c32a87a (diff)
downloadiced-2ac80f8e9ccbcb8538ca6e613488c3b0eb9ef124.tar.gz
iced-2ac80f8e9ccbcb8538ca6e613488c3b0eb9ef124.tar.bz2
iced-2ac80f8e9ccbcb8538ca6e613488c3b0eb9ef124.zip
Fix `window::open_events` subscribing to closed events
Fixes #2481.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/src/window.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/window.rs b/runtime/src/window.rs
index b04e5d59..3e53dd55 100644
--- a/runtime/src/window.rs
+++ b/runtime/src/window.rs
@@ -175,7 +175,7 @@ pub fn events() -> Subscription<(Id, Event)> {
/// Subscribes to all [`Event::Closed`] occurrences in the running application.
pub fn open_events() -> Subscription<Id> {
event::listen_with(|event, _status, id| {
- if let crate::core::Event::Window(Event::Closed) = event {
+ if let crate::core::Event::Window(Event::Opened { .. }) = event {
Some(id)
} else {
None