diff options
Diffstat (limited to 'native')
-rw-r--r-- | native/src/widget/column.rs | 1 | ||||
-rw-r--r-- | native/src/widget/row.rs | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/native/src/widget/column.rs b/native/src/widget/column.rs index 42cfe9b9..df21cdde 100644 --- a/native/src/widget/column.rs +++ b/native/src/widget/column.rs @@ -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); diff --git a/native/src/widget/row.rs b/native/src/widget/row.rs index 2b6db224..263f78d3 100644 --- a/native/src/widget/row.rs +++ b/native/src/widget/row.rs @@ -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); |