Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/crop undo #83

Merged
merged 2 commits into from
Oct 31, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: cropzone remains after undo operation after crop
  • Loading branch information
jinwoo-kim-nhn committed Oct 26, 2018
commit 2e485a59b68efba2695a061cb9fdf4f0d7c14ab9
3 changes: 2 additions & 1 deletion src/js/command/loadImage.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ const command = {
undo(graphics) {
const loader = graphics.getComponent(IMAGE_LOADER);
const {objects, name, image} = this.undoData;
const filteredObject = objects.filter(objectItem => objectItem.type !== 'cropzone');

graphics.removeAll(true);
graphics.add(objects);
graphics.add(filteredObject);

return loader.load(name, image);
}
Expand Down