Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix linelength warning
  • Loading branch information
bobthekingofegypt committed Nov 22, 2017
1 parent 20cf171 commit d723712
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/layout/block.rs
Expand Up @@ -1259,7 +1259,8 @@ impl BlockFlow {
// TODO: Right now, this content block-size value includes the
// margin because of erroneous block-size calculation in fragment.
// Check this when that has been fixed.
let block_size_used_val = self.fragment.border_box.size.block - self.fragment.border_padding.block_start_end();
let block_size_used_val = self.fragment.border_box.size.block -
self.fragment.border_padding.block_start_end();
solution = Some(BSizeConstraintSolution::solve_vertical_constraints_abs_replaced(
block_size_used_val,
margin_block_start,
Expand Down

0 comments on commit d723712

Please sign in to comment.