Skip to content

Commit

Permalink
Fix typo in Row's and Column's hash_layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Hlusička committed Oct 13, 2020
1 parent be61d84 commit 4910e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions native/src/widget/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion native/src/widget/row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4910e03

Please sign in to comment.