Skip to content

Commit

Permalink
fix 23723 rounding error (flutter#33473)
Browse files Browse the repository at this point in the history
  • Loading branch information
chunhtai authored and kiku-jw committed Jun 14, 2019
1 parent 7d32bf4 commit 9466ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flutter/lib/src/rendering/table.dart
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ class RenderTable extends RenderBox {
}
}
}
assert(tableWidth >= targetWidth);
assert(tableWidth + precisionErrorTolerance >= targetWidth);
}
} // step 2 and 3 are mutually exclusive

Expand Down

0 comments on commit 9466ba0

Please sign in to comment.