diff options
author | 2019-10-27 01:37:40 +0200 | |
---|---|---|
committer | 2019-10-27 01:37:40 +0200 | |
commit | 63c10b67ab213c5971313743fde566bd5c0f0c15 (patch) | |
tree | 6d1af1007f759e41ef26d48a2a99f91fb0136e5b /native | |
parent | 09bd2c46c06eba72da40852d82a52e7353cc9e9b (diff) | |
download | iced-63c10b67ab213c5971313743fde566bd5c0f0c15.tar.gz iced-63c10b67ab213c5971313743fde566bd5c0f0c15.tar.bz2 iced-63c10b67ab213c5971313743fde566bd5c0f0c15.zip |
Remove `Scrollable::justify_content` method
Diffstat (limited to 'native')
-rw-r--r-- | native/src/widget/scrollable.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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); |