From 63c10b67ab213c5971313743fde566bd5c0f0c15 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 27 Oct 2019 01:37:40 +0200 Subject: Remove `Scrollable::justify_content` method --- native/src/widget/scrollable.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'native/src/widget') diff --git a/native/src/widget/scrollable.rs b/native/src/widget/scrollable.rs index f411915b..e0983e6e 100644 --- a/native/src/widget/scrollable.rs +++ b/native/src/widget/scrollable.rs @@ -30,6 +30,7 @@ where .width(self.content.width) .max_width(self.content.max_width) .height(self.height) + .max_height(self.max_height) .align_self(self.align_self) .align_items(self.align_items); -- cgit