summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-06-11 19:41:05 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-06-11 19:41:05 +0200
commit5d7dcf417c694853a606b8fb0a47a580277fc9c0 (patch)
tree8209e3787ee4f4b8ef028fafc9635b1acf777c75 /src/lib.rs
parent83296a73ebbb3c02ed63dfb4661056a8a8962267 (diff)
downloadiced-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.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 50ee7ecc..317d25a6 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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 {