From 4abc8b394be11a078ae1ed659f889d62c39cc8ca Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Fri, 30 Nov 2012 16:29:18 -0500 Subject: [PATCH] Select entity when you finish drawing a way. Fixes #143 --- js/id/actions/modes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/id/actions/modes.js b/js/id/actions/modes.js index 1e13bcc3e..c06839888 100644 --- a/js/id/actions/modes.js +++ b/js/id/actions/modes.js @@ -202,6 +202,7 @@ iD.modes.DrawRoad = function(way_id, direction) { } delete way.tags.elastic; this.map.perform(iD.actions.changeTags(way, way.tags)); + this.map.selectEntity(way); // End by clicking on own tail return this.exit(); } else {