Rename window::closings to window::close_events

This commit is contained in:
Héctor Ramón Jiménez 2024-06-16 20:15:55 +02:00
parent ad2e4c535a
commit b5c5a016c4
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 28 additions and 6 deletions

View file

@ -150,7 +150,7 @@ impl multi_window::Application for Example {
}
fn subscription(&self) -> Subscription<Self::Message> {
window::closings().map(Message::WindowClosed)
window::close_events().map(Message::WindowClosed)
}
}