summaryrefslogtreecommitdiffstats
path: root/src/widget/row.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget/row.rs')
-rw-r--r--src/widget/row.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widget/row.rs b/src/widget/row.rs
index c4121157..c85c85ea 100644
--- a/src/widget/row.rs
+++ b/src/widget/row.rs
@@ -196,12 +196,12 @@ impl<'a, Message, Renderer> Widget<Message, Renderer>
cursor
}
- fn hash(&self, state: &mut Hasher) {
+ fn hash_layout(&self, state: &mut Hasher) {
self.style.hash(state);
self.spacing.hash(state);
for child in &self.children {
- child.widget.hash(state);
+ child.widget.hash_layout(state);
}
}
}