diff options
author | 2023-02-17 11:42:49 -0800 | |
---|---|---|
committer | 2023-02-17 11:42:49 -0800 | |
commit | 8da098330b58542cc929f4f24d02e26bd654bae4 (patch) | |
tree | ceae5206f912226070f67e9fcb94d11fd53fe9ab /native/src | |
parent | 3c095aa3f09f28c6fd9d2a7ba220ced407693e0b (diff) | |
download | iced-8da098330b58542cc929f4f24d02e26bd654bae4.tar.gz iced-8da098330b58542cc929f4f24d02e26bd654bae4.tar.bz2 iced-8da098330b58542cc929f4f24d02e26bd654bae4.zip |
Fixed widget animations implementation
Diffstat (limited to 'native/src')
-rw-r--r-- | native/src/widget/tree.rs | 2 | ||||
-rw-r--r-- | native/src/window.rs | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/native/src/widget/tree.rs b/native/src/widget/tree.rs index 0af40c33..da269632 100644 --- a/native/src/widget/tree.rs +++ b/native/src/widget/tree.rs @@ -67,7 +67,7 @@ impl Tree { } } - /// Reconciliates the children of the tree with the provided list of widgets. + /// Reconciles the children of the tree with the provided list of widgets. pub fn diff_children<'a, Message, Renderer>( &mut self, new_children: &[impl Borrow<dyn Widget<Message, Renderer> + 'a>], diff --git a/native/src/window.rs b/native/src/window.rs index e768ed6d..a8f8b10f 100644 --- a/native/src/window.rs +++ b/native/src/window.rs @@ -21,7 +21,6 @@ pub use user_attention::UserAttention; use crate::subscription::{self, Subscription}; use crate::time::Instant; -use crate::window; /// Subscribes to the frames of the window of the running application. /// |