diff options
author | 2024-06-11 19:41:05 +0200 | |
---|---|---|
committer | 2024-06-11 19:41:05 +0200 | |
commit | 5d7dcf417c694853a606b8fb0a47a580277fc9c0 (patch) | |
tree | 8209e3787ee4f4b8ef028fafc9635b1acf777c75 /src/lib.rs | |
parent | 83296a73ebbb3c02ed63dfb4661056a8a8962267 (diff) | |
download | iced-5d7dcf417c694853a606b8fb0a47a580277fc9c0.tar.gz iced-5d7dcf417c694853a606b8fb0a47a580277fc9c0.tar.bz2 iced-5d7dcf417c694853a606b8fb0a47a580277fc9c0.zip |
Introduce `subscription::Event`
... and remove `PlatformSpecific` from `Event`
Diffstat (limited to '')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -236,8 +236,10 @@ pub mod font { pub mod event { //! Handle events of a user interface. - pub use crate::core::event::{Event, MacOS, PlatformSpecific, Status}; - pub use iced_futures::event::{listen, listen_raw, listen_with}; + pub use crate::core::event::{Event, Status}; + pub use iced_futures::event::{ + listen, listen_raw, listen_url, listen_with, + }; } pub mod keyboard { |