We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a018fd commit 422c3c0Copy full SHA for 422c3c0
1 file changed
packages/vtable/src/scenegraph/graphic/contributions/rect-contribution-render.ts
@@ -226,8 +226,8 @@ export class SplitRectAfterRenderContribution implements IRectRenderContribution
226
stroke,
227
strokeArrayWidth || lineWidth,
228
strokeArrayColor || strokeColor,
229
- Math.ceil(width + deltaWidth),
230
- Math.ceil(height + deltaHeight)
+ rect.name !== 'table-border-rect' ? Math.ceil(width + deltaWidth) : width + deltaWidth,
+ rect.name !== 'table-border-rect' ? Math.ceil(height + deltaHeight) : height + deltaHeight
231
);
232
}
233
0 commit comments