CanvasBox no longer crashes on nil drawer
This commit is contained in:
parent
caa261665f
commit
e23e794730
@ -30,6 +30,8 @@ func (this *canvasBox) Invalidate () {
|
||||
|
||||
func (this *canvasBox) Draw (can canvas.Canvas) {
|
||||
this.box.Draw(can)
|
||||
if this.userDrawer != nil {
|
||||
this.userDrawer.Draw (
|
||||
can.SubCanvas(this.padding.Apply(this.innerClippingBounds)))
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user