Skip to content

Commit 171213d

Browse files
authored
Merge pull request #1433 from OpenGeoscience/polygon-partial
fix: Checking for partial polygon stroke intersections
2 parents 51eca9e + 4459fec commit 171213d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/polygonFeature.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ var polygonFeature = function (arg) {
392392
extra[lineFound.index[idx]] = {partial: false};
393393
}
394394
if (lineFound.extra[lineFound.index[idx]].partial) {
395-
extra[lineData[0][3]].partial = true;
395+
extra[lineFound.index[idx]].partial = true;
396396
}
397397
}
398398
});

0 commit comments

Comments
 (0)