Skip to content

Commit

Permalink
[fix] SelectionLayer: Intermittent error when releasing mouse quickly (
Browse files Browse the repository at this point in the history
  • Loading branch information
igorDykhta authored Nov 23, 2022
1 parent 81d4274 commit ebbde6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/edit-modes/src/lib/two-click-polygon-mode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class TwoClickPolygonMode extends GeoJsonEditMode {
features: [],
};

if (clickSequence.length === 0) {
if (clickSequence.length === 0 || !lastPointerMoveEvent) {
// nothing to do yet
return guides;
}
Expand Down

0 comments on commit ebbde6f

Please sign in to comment.