Merge pull request #842 from sjhuang26/issue-839-go-to-front

Go to front in stage does nothing
This commit is contained in:
Paul Kaplan 2017-12-04 11:36:25 -05:00 committed by GitHub
commit 723971188a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -410,7 +410,9 @@ class Scratch3LooksBlocks {
}
goToFront (args, util) {
util.target.goToFront();
if (!util.target.isStage) {
util.target.goToFront();
}
}
goBackLayers (args, util) {