Skip to content

Commit

Permalink
v0.6.72
Browse files Browse the repository at this point in the history
  • Loading branch information
mbloch committed Mar 17, 2024
1 parent 4bb38be commit 15cd649
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v0.6.72
* Bug fix

v0.6.71
* [web] Added a new edit mode for polyline layers: line drawing combined with line reshaping (by adding and dragging vertices), removed the old "edit vertices" menu item.
* [web] Added attribute editing to the inspection control, removed the "edit attributes" menu item.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mapshaper",
"version": "0.6.71",
"version": "0.6.72",
"description": "A tool for editing vector datasets for mapping and GIS.",
"keywords": [
"shapefile",
Expand Down
2 changes: 1 addition & 1 deletion src/gui/gui-draw-lines2.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export function initLineEditing(gui, ext, hit) {
if (pixelDist > HOVER_THRESHOLD || pathLen < 4) {
return null;
}
var point = translateDisplayPoint([x, y]);
var point = translateDisplayPoint(target, [x, y]);
return {
target, ids: [id], extendable: false, point
};
Expand Down

0 comments on commit 15cd649

Please sign in to comment.