Showing
2 changed files
with
3 additions
and
2 deletions
@@ -12,6 +12,7 @@ | @@ -12,6 +12,7 @@ | ||
12 | - Implement SpanningWidget on RichText | 12 | - Implement SpanningWidget on RichText |
13 | - Passthrough SpanningWidget on SingleChildWidget and StatelessWidget | 13 | - Passthrough SpanningWidget on SingleChildWidget and StatelessWidget |
14 | - Improve TextOverflow support | 14 | - Improve TextOverflow support |
15 | +- Fix Table horizontalInside borders | ||
15 | 16 | ||
16 | ## 3.2.0 | 17 | ## 3.2.0 |
17 | 18 |
@@ -128,8 +128,8 @@ class TableBorder extends Border { | @@ -128,8 +128,8 @@ class TableBorder extends Border { | ||
128 | context.canvas.moveTo(box.x, offset); | 128 | context.canvas.moveTo(box.x, offset); |
129 | context.canvas.lineTo(box.right, offset); | 129 | context.canvas.lineTo(box.right, offset); |
130 | } | 130 | } |
131 | - context.canvas.setStrokeColor(verticalInside.color); | ||
132 | - context.canvas.setLineWidth(verticalInside.width); | 131 | + context.canvas.setStrokeColor(horizontalInside.color); |
132 | + context.canvas.setLineWidth(horizontalInside.width); | ||
133 | context.canvas.strokePath(); | 133 | context.canvas.strokePath(); |
134 | horizontalInside.style.unsetStyle(context); | 134 | horizontalInside.style.unsetStyle(context); |
135 | } | 135 | } |
-
Please register or login to post a comment