From 7e5a5ae743785c153fc328c8aa4ed290298ecc62 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 18 Jul 2022 19:59:38 +0200 Subject: Fix `max_width` and `max_height` for `Container` --- pure/src/widget/container.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pure') diff --git a/pure/src/widget/container.rs b/pure/src/widget/container.rs index 8ea9ca72..44ffff8c 100644 --- a/pure/src/widget/container.rs +++ b/pure/src/widget/container.rs @@ -156,6 +156,8 @@ where limits, self.width, self.height, + self.max_width, + self.max_height, self.padding, self.horizontal_alignment, self.vertical_alignment, -- cgit