1
0
Fork 0

Merge pull request #5991 from BenJamesBen/stack-anchor-property

fix(core): Add missing anchor property to Stack() constructor
This commit is contained in:
Joost De Cock 2024-02-10 14:18:33 +01:00 committed by GitHub
commit 4bb64f1bda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,6 +15,7 @@ export function Stack(name = null) {
this.bottomRight = false
this.width = false
this.height = false
this.anchor = new Point(0, 0)
return this
}