From f86d96be0fd82b479967fda3f418bf47c80e5705 Mon Sep 17 00:00:00 2001 From: Imbris Date: Mon, 6 Dec 2021 14:27:24 -0500 Subject: Include alignment in the container layout hash --- native/src/widget/container.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'native') diff --git a/native/src/widget/container.rs b/native/src/widget/container.rs index 756d9d1b..0c291788 100644 --- a/native/src/widget/container.rs +++ b/native/src/widget/container.rs @@ -226,6 +226,8 @@ where self.height.hash(state); self.max_width.hash(state); self.max_height.hash(state); + self.horizontal_alignment.hash(state); + self.vertical_alignment.hash(state); self.content.hash_layout(state); } -- cgit