Fix typo in Row's and Column's hash_layout

This commit is contained in:
Jakub Hlusička 2020-10-13 20:48:53 +02:00
parent be61d84cae
commit 4910e03833
2 changed files with 2 additions and 1 deletions

View File

@ -199,6 +199,7 @@ where
self.max_height.hash(state);
self.align_items.hash(state);
self.spacing.hash(state);
self.padding.hash(state);
for child in &self.children {
child.widget.hash_layout(state);

View File

@ -200,7 +200,7 @@ where
self.max_height.hash(state);
self.align_items.hash(state);
self.spacing.hash(state);
self.spacing.hash(state);
self.padding.hash(state);
for child in &self.children {
child.widget.hash_layout(state);