Only set coalesceChanges flag when a real tag change has happened

(closes #3035)
This commit is contained in:
Bryan Housel
2016-03-14 20:55:53 -04:00
parent 404a45e550
commit e1cde03a95
+1 -2
View File
@@ -191,10 +191,9 @@ iD.ui.EntityEditor = function(context) {
context.overwrite(iD.actions.ChangeTags(id, tags), annotation);
} else {
context.perform(iD.actions.ChangeTags(id, tags), annotation);
coalesceChanges = !!onInput;
}
}
coalesceChanges = !!onInput;
}
entityEditor.modified = function(_) {