diff options
author | 2023-03-05 04:15:10 +0100 | |
---|---|---|
committer | 2023-03-05 04:15:10 +0100 | |
commit | f4cf488e0b083b5d7b7612c650917233163ee9cb (patch) | |
tree | 66b7ebdbf6896f472c927d0f0d9fc02bdc5c5f83 /native/src/window.rs | |
parent | 5fed065dc3aa3d2f9ff8d229cbffe003a89ba033 (diff) | |
download | iced-f4cf488e0b083b5d7b7612c650917233163ee9cb.tar.gz iced-f4cf488e0b083b5d7b7612c650917233163ee9cb.tar.bz2 iced-f4cf488e0b083b5d7b7612c650917233163ee9cb.zip |
Remove generic `Hasher` and `Event` from `subscription::Recipe`
Diffstat (limited to 'native/src/window.rs')
-rw-r--r-- | native/src/window.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/window.rs b/native/src/window.rs index 97a96e54..aa3f35c7 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -5,7 +5,7 @@ pub use action::Action; use crate::core::time::Instant; use crate::core::window::Event; -use crate::subscription::{self, Subscription}; +use crate::futures::subscription::{self, Subscription}; /// Subscribes to the frames of the window of the running application. /// |