From 7526d73ad3f0c1480e46879159215902e241415d Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 14 Feb 2025 19:53:11 +0100 Subject: Fix `Component` not diffing when its state is recreated --- widget/src/lazy/component.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/widget/src/lazy/component.rs b/widget/src/lazy/component.rs index 30822b7d..c215de7a 100644 --- a/widget/src/lazy/component.rs +++ b/widget/src/lazy/component.rs @@ -266,7 +266,10 @@ where state: tree::State::new(S::default()), children: vec![Tree::empty()], }))); + *self.tree.borrow_mut() = state.clone(); + self.diff_self(); + tree::State::new(state) } -- cgit