mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-02-10 18:15:19 +08:00
Fix bug #79381
This commit is contained in:
@ -1657,7 +1657,7 @@ CShapeDrawer.prototype =
|
||||
|
||||
const geometry = this.Shape.getGeometry();
|
||||
const unclosedPaths = geometry.pathLst.filter(function (path) {
|
||||
return !path.isClosed();
|
||||
return !path.isEmpty() && !path.isClosed();
|
||||
});
|
||||
|
||||
if (this.Ln.headEnd != null) {
|
||||
|
||||
Reference in New Issue
Block a user