You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// and the sum of the flex lines' cross sizes is less than the flex container’s inner cross size,
1177
1189
/// increase the cross size of each flex line by equal amounts such that the sum of their cross sizes exactly equals the flex container’s inner cross size.
1178
1190
#[inline]
1179
-
fnhandle_align_content_stretch(
1180
-
tree:&mutimplLayoutTree,
1181
-
flex_lines:&mut[FlexLine],
1182
-
node:Node,
1183
-
node_size:Size<Option<f32>>,
1184
-
constants:&AlgoConstants,
1185
-
){
1186
-
let align_content = tree.style(node).align_content.unwrap_or(AlignContent::Stretch);
1187
-
if align_content == AlignContent::Stretch && node_size.cross(constants.dir).is_some(){
0 commit comments