From bf1270908b1b425c090423388e0813cf4d6c65cc Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 5 Mar 2015 16:49:04 -0500 Subject: [PATCH] Don't attempt clever way movement with areas. --- js/id/actions/move.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/id/actions/move.js b/js/id/actions/move.js index 985ef43c1..7dd39c5b3 100644 --- a/js/id/actions/move.js +++ b/js/id/actions/move.js @@ -51,6 +51,8 @@ iD.actions.Move = function(moveIds, tryDelta, projection, cache) { unmoved = _.find(parents, function(way) { return !cache.moving[way.id]; }); if (!unmoved) return; + if (moved.isArea() || unmoved.isArea()) return; + cache.intersection[node.id] = { nodeId: node.id, movedId: moved.id,