Unverified Commit 170309d6 authored by chunhtai's avatar chunhtai Committed by GitHub

fix 23723 rounding error (#33473)

parent c7c0965c
......@@ -879,7 +879,7 @@ class RenderTable extends RenderBox {
}
}
}
assert(tableWidth >= targetWidth);
assert(tableWidth + precisionErrorTolerance >= targetWidth);
}
} // step 2 and 3 are mutually exclusive
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment