Preserve the undo annotation when doing point-area merge

(closes #4113)
This commit is contained in:
Bryan Housel
2017-06-21 18:56:45 -04:00
parent 90870a0eb9
commit 894bd615c9

View File

@@ -22,7 +22,7 @@ export function operationMerge(selectedIDs, context) {
var oldPreset = context.presets().match(oldEntity, oldGraph),
newPreset = context.presets().match(newEntity, newGraph);
context.replace(actionChangePreset(id, oldPreset, newPreset));
context.replace(actionChangePreset(id, oldPreset, newPreset), operation.annotation());
}