Box applies the style to the outer box (oops!)

This commit is contained in:
Sasha Koshka 2024-07-26 00:22:10 -04:00
parent 7809aac72f
commit 4f89b11799

View File

@ -510,7 +510,7 @@ func (this *box) doLayout () {
}
func (this *box) doStyle () {
this.styleApplicator.apply(this)
this.styleApplicator.apply(this.outer)
}
func (this *box) setParent (parent parent) {