Finished magic wand

This commit is contained in:
Nicola 2022-01-14 17:58:40 +01:00
parent 37d21f5dec
commit 86ab2e08e6
1 changed files with 5 additions and 0 deletions

View File

@ -40,6 +40,11 @@ class MagicWandTool extends SelectionTool {
this.boundingBoxCenter = [this.boundingBox.minX + (this.boundingBox.maxX - this.boundingBox.minX) / 2,
this.boundingBox.minY + (this.boundingBox.maxY - this.boundingBox.minY) / 2];
// Cut the selection
this.cutSelection();
// Put it on the TMP layer
currFile.TMPLayer.context.putImageData(this.previewData, 0, 0);
return selectedData;
}