From d351f74a94aeee85dfe25be70ea8ea3e76f25db7 Mon Sep 17 00:00:00 2001 From: Ansis Brammanis Date: Wed, 27 Feb 2013 14:57:07 -0500 Subject: [PATCH] Undos during drag now redoable --- js/id/behavior/drag_node.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/id/behavior/drag_node.js b/js/id/behavior/drag_node.js index c16ede85f..e8749927f 100644 --- a/js/id/behavior/drag_node.js +++ b/js/id/behavior/drag_node.js @@ -98,7 +98,8 @@ iD.behavior.DragNode = function(context) { } } - context.replace(iD.actions.MoveNode(entity.id, loc)); + context.replace(iD.actions.MoveNode(entity.id, loc), + t('operations.move.annotation.' + entity.geometry(context.graph()))); } function end(entity) {