Fix typo in Row's and Column's hash_layout
This commit is contained in:
parent
be61d84cae
commit
4910e03833
2 changed files with 2 additions and 1 deletions
|
|
@ -199,6 +199,7 @@ where
|
||||||
self.max_height.hash(state);
|
self.max_height.hash(state);
|
||||||
self.align_items.hash(state);
|
self.align_items.hash(state);
|
||||||
self.spacing.hash(state);
|
self.spacing.hash(state);
|
||||||
|
self.padding.hash(state);
|
||||||
|
|
||||||
for child in &self.children {
|
for child in &self.children {
|
||||||
child.widget.hash_layout(state);
|
child.widget.hash_layout(state);
|
||||||
|
|
|
||||||
|
|
@ -200,7 +200,7 @@ where
|
||||||
self.max_height.hash(state);
|
self.max_height.hash(state);
|
||||||
self.align_items.hash(state);
|
self.align_items.hash(state);
|
||||||
self.spacing.hash(state);
|
self.spacing.hash(state);
|
||||||
self.spacing.hash(state);
|
self.padding.hash(state);
|
||||||
|
|
||||||
for child in &self.children {
|
for child in &self.children {
|
||||||
child.widget.hash_layout(state);
|
child.widget.hash_layout(state);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue