summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@hecrj.dev>2024-06-11 20:22:44 +0200
committerLibravatar GitHub <noreply@github.com>2024-06-11 20:22:44 +0200
commite6d0b3bda5042a1017a5944a5227c97e0ed6caf9 (patch)
tree916f837424c3baeacc1e0f43b02bc892a3445cbb /src
parentbda01567d59c00e42e5a208ee6d9ec4153d5c195 (diff)
parent6ea7846d88915f8d820c5126d7757f1346234522 (diff)
downloadiced-e6d0b3bda5042a1017a5944a5227c97e0ed6caf9.tar.gz
iced-e6d0b3bda5042a1017a5944a5227c97e0ed6caf9.tar.bz2
iced-e6d0b3bda5042a1017a5944a5227c97e0ed6caf9.zip
Merge pull request #2456 from iced-rs/window-id-in-event-subscriptions
Introduce `window::Id` to `Event` subscriptions
Diffstat (limited to 'src')
-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 {