Always activate the current costume after deleting

This commit is contained in:
Paul Kaplan 2017-05-22 08:14:13 -04:00
parent 423da12c3c
commit 3eaec99e51

View file

@ -405,6 +405,8 @@ class RenderedTarget extends Target {
this.setCostume(index - 1);
} else if (index < this.currentCostume) {
this.setCostume(this.currentCostume - 1);
} else {
this.setCostume(this.currentCostume);
}
this.runtime.requestTargetsUpdate(this);