ext-tables fix coumn width rounding issue

This commit is contained in:
Dimitry Ivanov 2020-08-10 12:12:48 +03:00
parent df89c06f22
commit d26da7c1a0
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
#### Fixed
* `image-coil` - deliver image result if it loaded before request disposable is created ([#272])
* `ext-tables` - fix column width rounding issue
[#272]: https://github.com/noties/Markwon/issues/272

View File

@ -170,7 +170,7 @@ public class TableRowSpan extends ReplacementSpan {
final int size = layouts.size();
final int w = width / size;
final int w = (int) (1F * width / size + 0.5F);
// @since 1.1.1
// draw backgrounds