summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-27 01:37:40 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-27 01:37:40 +0200
commit63c10b67ab213c5971313743fde566bd5c0f0c15 (patch)
tree6d1af1007f759e41ef26d48a2a99f91fb0136e5b /native
parent09bd2c46c06eba72da40852d82a52e7353cc9e9b (diff)
downloadiced-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.rs1
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);