Skip to content

Commit 384f89f

Browse files
committed
clean: remove dbg
1 parent b63a076 commit 384f89f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

float-pigment-layout/src/algo/flex_box.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,6 @@ impl<T: LayoutTreeNode> FlexBox<T> for LayoutUnit<T> {
897897
.items
898898
.iter()
899899
.map(|child| {
900-
dbg!(&child.first_baseline_ascent, &child.margin);
901900
if child.final_align_self == AlignSelf::Baseline {
902901
max_baseline - child.first_baseline_ascent.cross_axis(dir)
903902
+ child.hypothetical_outer_size.cross_size(dir)
@@ -907,7 +906,6 @@ impl<T: LayoutTreeNode> FlexBox<T> for LayoutUnit<T> {
907906
}
908907
})
909908
.fold(T::Length::zero(), |acc, x| acc.max(x));
910-
dbg!(line.cross_size, max_baseline);
911909
}
912910

913911
// If the flex container is single-line, then clamp the line’s cross-size to be within the container’s computed min

0 commit comments

Comments
 (0)