diff --git a/core/src/widget.rs b/core/src/widget.rs index 3c9c50ab..04107482 100644 --- a/core/src/widget.rs +++ b/core/src/widget.rs @@ -96,7 +96,9 @@ where } /// Reconciles the [`Widget`] with the provided [`Tree`]. - fn diff(&self, _tree: &mut Tree) {} + fn diff(&self, tree: &mut Tree) { + tree.diff_children(&[] as &[&dyn Widget]); + } /// Applies an [`Operation`] to the [`Widget`]. fn operate(